From 54b182603570419be092d7656f258ab254cfe5bc Mon Sep 17 00:00:00 2001 From: BuildTools Date: Mon, 23 Nov 2020 08:45:04 -0500 Subject: [PATCH 001/117] rt automation script --- rt_auto.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 rt_auto.py diff --git a/rt_auto.py b/rt_auto.py new file mode 100644 index 0000000000..8bb317bf01 --- /dev/null +++ b/rt_auto.py @@ -0,0 +1,15 @@ +# HEADER +# Written by Brian Curtis +# Automation of RT tasks using github cli + +from github import Github as gh + +# Initial items +g = gh("05630912c8d01499a0135f760f01b96f0f6fe127") +user = g.get_user() +repo = g.get_repo("BrianCurtis-NOAA/ufs-weather-model") +print(repo.name) + +pulls = repo.get_pulls(state='open', sort='created', base='develop') +for pr in pulls: + print(pr.number) From 9d93b8d10bd63fc3d06395f9c1a27e631bf29536 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Mon, 23 Nov 2020 10:33:12 -0500 Subject: [PATCH 002/117] rt automation script w/o token --- rt_auto.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 8bb317bf01..2952954d85 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -4,10 +4,18 @@ from github import Github as gh +USERNAME = None +PASSWORD = None + +def connect_to_github(): # In case there's more needed later + global USERNAME + global PASSWORD + client = gh(USERNAME, PASSWORD) #essentially + return client + # Initial items -g = gh("05630912c8d01499a0135f760f01b96f0f6fe127") -user = g.get_user() -repo = g.get_repo("BrianCurtis-NOAA/ufs-weather-model") +client = connect_to_github() +repo = client.get_repo("BrianCurtis-NOAA/ufs-weather-model") print(repo.name) pulls = repo.get_pulls(state='open', sort='created', base='develop') From f8dfa9fdbf27d5a7fc3a2241c1c4d98f456c0cd9 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Mon, 23 Nov 2020 14:40:52 -0500 Subject: [PATCH 003/117] getting machine name test --- rt_auto.py | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/rt_auto.py b/rt_auto.py index 2952954d85..d8c73a759a 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -2,11 +2,25 @@ # Written by Brian Curtis # Automation of RT tasks using github cli -from github import Github as gh +#from github import Github as gh +import socket +import re +import sys USERNAME = None PASSWORD = None +def get_machine_name(): + hostname = socket.gethostname() +# hfe## # HERA + if re.match() +# v##X# # VENUS +# m##X# # MARS +# slogin# # SURGE +# Orion-login-3.HPC.MsState.Edu #ORION + print(re.match("hfe\d\d", hostname)) + print(re.match("N[a-z][a-z][a-z]", hostname)) + def connect_to_github(): # In case there's more needed later global USERNAME global PASSWORD @@ -14,6 +28,8 @@ def connect_to_github(): # In case there's more needed later return client # Initial items +get_machine_name() +sys.exit() client = connect_to_github() repo = client.get_repo("BrianCurtis-NOAA/ufs-weather-model") print(repo.name) @@ -21,3 +37,12 @@ def connect_to_github(): # In case there's more needed later pulls = repo.get_pulls(state='open', sort='created', base='develop') for pr in pulls: print(pr.number) + comments = pr.get_issue_comments() + for comment in comments: + print(comment.body) + +# CHECK IS USER ON APPROVED LIST + +# CHECK IF COMMENT HAS ALREADY BEEN ACKNOWLEDGED + +# CHECK IF COMMENT HAS ACTION TRIGGER: ++ From cff844619c498e338fc54026b6f428163e2cba32 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Tue, 24 Nov 2020 16:43:04 -0500 Subject: [PATCH 004/117] Updates to python script, and addition of YAML database --- rt_auto.py | 84 +++++++++++++++++++++++++++++++++++++---------------- rt_auto.yml | 25 ++++++++++++++++ 2 files changed, 84 insertions(+), 25 deletions(-) create mode 100644 rt_auto.yml diff --git a/rt_auto.py b/rt_auto.py index d8c73a759a..06c1436aad 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -2,44 +2,78 @@ # Written by Brian Curtis # Automation of RT tasks using github cli -#from github import Github as gh +from github import Github as gh +import pandas as pd import socket import re import sys +import yaml -USERNAME = None -PASSWORD = None +GHACCESSTOKEN = None def get_machine_name(): hostname = socket.gethostname() -# hfe## # HERA - if re.match() -# v##X# # VENUS -# m##X# # MARS -# slogin# # SURGE -# Orion-login-3.HPC.MsState.Edu #ORION - print(re.match("hfe\d\d", hostname)) - print(re.match("N[a-z][a-z][a-z]", hostname)) + machines = read_yaml_data("machines") + df = pd.DataFrame.from_dict(machines) + A = df['name'][df.index[df.regexhostname.str.match(hostname)].tolist()] + if len(A) == 1: + machine = list(A)[0] + print("Approved Machine Found: {}".format(machine)) + return machine + else: + sys.exit("Hostname {} does not match approved list. Quitting".format(hostname)) + +def is_user_approved(userin): + approvedusers = read_yaml_data('approvedusers') + userlist = pd.DataFrame.from_dict(approvedusers) + A = userlist['username'][userlist.index[userlist.username.str.match(userin)].tolist()] + if len(A) == 1: + user = list(A)[0] + print("Approved Github Username Found: {}".format(user)) + return user + else: + sys.exit("Username {} does not match approved list. Quitting".format(hostname)) + +def get_repos_list(): + repos = read_yaml_data("repository") + df = pd.DataFrame.from_dict(repos) + return df def connect_to_github(): # In case there's more needed later - global USERNAME - global PASSWORD - client = gh(USERNAME, PASSWORD) #essentially + global GHACCESSTOKEN + client = gh(GHACCESSTOKEN) #will work if None for public repos. return client +def read_yaml_data(keyin): + stream = open("rt_auto.yml", 'r') + dictionary = yaml.load(stream, Loader=yaml.SafeLoader) + try: + dataout = dictionary[keyin] + except KeyError as e: + sys.exit("No data available with name {}. Quitting".format(keyin)) + return dataout + + # Initial items -get_machine_name() -sys.exit() +machine = get_machine_name() #ALWAYS RUN THIS FIRST +repos = get_repos_list() client = connect_to_github() -repo = client.get_repo("BrianCurtis-NOAA/ufs-weather-model") -print(repo.name) - -pulls = repo.get_pulls(state='open', sort='created', base='develop') -for pr in pulls: - print(pr.number) - comments = pr.get_issue_comments() - for comment in comments: - print(comment.body) +for name,address,base in repos.values.tolist(): + repo = client.get_repo(address) + pulls = repo.get_pulls(state='open', sort='created', base='develop') + for pr in pulls: + print(pr.head.repo.default_branch) + print(pr.head.repo.master_branch) + print(pr.number) + comments = pr.get_issue_comments() + for comment in comments: + comment_user = comment.user.login + print("comment user: {}".format(comment_user)) + is_user_approved(comment_user) + print(comment.body) + + + # CHECK IS USER ON APPROVED LIST diff --git a/rt_auto.yml b/rt_auto.yml new file mode 100644 index 0000000000..64ab169526 --- /dev/null +++ b/rt_auto.yml @@ -0,0 +1,25 @@ +--- + machines: + - name: 'hera' + regexhostname: 'hfe\d\d' + - name: "orion" + regexhostname: 'Orion-login-\d.HPC.MsState.Edu' + - name: "venus" + regexhostname: 'v\d\d[a-z]\d' + - name: "mars" + regexhostname: 'm\d\d[a-z]\d' + - name: "surge" + regexhostname: 'slogin\d' + - name: "Neon" + regexhostname: 'Neon' + approvedusers: + - name: "Brian Curtis" + username: "BrianCurtis-NOAA" + machines: {"hera", "orion"} + - name: "Rahul Mahajan" + username: "aerorahul" + machines: {"hera", "orion","venus", "mars"} + repository: + - name: ufs-weather-model + address: "BrianCurtis-NOAA/ufs-weather-model" + base: "develop" From 89c62481927a07957899702676fc667dfeb71069 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Wed, 25 Nov 2020 12:41:19 -0500 Subject: [PATCH 005/117] added check for approved users, added check for triggers in pr comments --- rt_auto.py | 50 +++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 11 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 06c1436aad..480ee9dd79 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -30,9 +30,10 @@ def is_user_approved(userin): if len(A) == 1: user = list(A)[0] print("Approved Github Username Found: {}".format(user)) - return user + return True else: - sys.exit("Username {} does not match approved list. Quitting".format(hostname)) + print("User not found in approved list.") + return False def get_repos_list(): repos = read_yaml_data("repository") @@ -53,24 +54,51 @@ def read_yaml_data(keyin): sys.exit("No data available with name {}. Quitting".format(keyin)) return dataout +def clone_pr_repo(): + return + +def check_for_trigger(comments): + # CHECK FOR TRIGGER WORD IN COMMENTS, IF TRIGGERED, CHECK IF USER IS + # APPROVED BEFORE ADDING TO LISTS + trigger = [] + commentid = [] + for comment in comments: + body = comment.body + body_split = body.split() + for word in body_split: + if re.match("\+\+.+\+\+", word): + print("FOUND MATCH {} at comment {}".format(word, comment.id)) + print("USER IS: {}".format(comment.user.login)) + approve_bool = is_user_approved(comment.user.login) + if approve_bool: + print("User {} is approved, continuing".format(comment.user.login)) + trigger.append(word) + commentid.append(comment.id) + else: + print("User is NOT approved, skipping trigger") + continue + if not trigger: + return None, None + else: + return trigger, commentid # Initial items machine = get_machine_name() #ALWAYS RUN THIS FIRST repos = get_repos_list() client = connect_to_github() for name,address,base in repos.values.tolist(): repo = client.get_repo(address) - pulls = repo.get_pulls(state='open', sort='created', base='develop') + pulls = repo.get_pulls(state='open', sort='created', base=base) for pr in pulls: - print(pr.head.repo.default_branch) - print(pr.head.repo.master_branch) - print(pr.number) comments = pr.get_issue_comments() - for comment in comments: - comment_user = comment.user.login - print("comment user: {}".format(comment_user)) - is_user_approved(comment_user) - print(comment.body) + trigger, commentid = check_for_trigger(comments) + if trigger == None: + continue + else: + print("Out Triggers, commentid: {}, {}".format(trigger, commentid)) + print(pr.head.repo.clone_url) + print(pr.head.ref) + From d35e2865ac043c857a6ff3749b931bf3d5b0478a Mon Sep 17 00:00:00 2001 From: BuildTools Date: Mon, 7 Dec 2020 16:13:01 -0500 Subject: [PATCH 006/117] Script now interacts with github directly, is able to process triggers --- rt_auto.py | 150 ++++++++++++++++++++++++++++++++++------------------ rt_auto.yml | 13 +++-- 2 files changed, 104 insertions(+), 59 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 480ee9dd79..2a0919224b 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -8,71 +8,125 @@ import re import sys import yaml +import numpy as np +from os import path +import pdb GHACCESSTOKEN = None +db_filename = 'rt_auto.yml' +yaml_data = None +client = None +machine = None -def get_machine_name(): +def get_machine_name(static_data): + global machine hostname = socket.gethostname() - machines = read_yaml_data("machines") - df = pd.DataFrame.from_dict(machines) - A = df['name'][df.index[df.regexhostname.str.match(hostname)].tolist()] + machines = get_yaml_subset(static_data, "machines") + A = machines['name'][machines.index[machines.regexhostname.str.match(hostname)].tolist()] if len(A) == 1: - machine = list(A)[0] + machine = str(list(A)[0]) print("Approved Machine Found: {}".format(machine)) return machine else: sys.exit("Hostname {} does not match approved list. Quitting".format(hostname)) -def is_user_approved(userin): - approvedusers = read_yaml_data('approvedusers') - userlist = pd.DataFrame.from_dict(approvedusers) - A = userlist['username'][userlist.index[userlist.username.str.match(userin)].tolist()] - if len(A) == 1: - user = list(A)[0] - print("Approved Github Username Found: {}".format(user)) - return True - else: - print("User not found in approved list.") - return False +# THE FOLLOWING FUNCTION REQUIRES AUTHENTICATION TOKEN TO BE SET +def is_collaborator(repo, userin): + collaborator_bool = False + allowed_collaborators = repo.get_collaborators() + for collaborator in allowed_collaborators: + if collaborator.login == userin: + collaborator_bool = True + return collaborator_bool -def get_repos_list(): - repos = read_yaml_data("repository") - df = pd.DataFrame.from_dict(repos) +def get_yaml_subset(in_yaml, keyin): + try: + yaml_subset = in_yaml[keyin] + except: + sys.exit("Unable to get yaml subset: {}. Quitting".format(keyin)) + df = pd.DataFrame.from_dict(yaml_subset) return df def connect_to_github(): # In case there's more needed later global GHACCESSTOKEN + global client client = gh(GHACCESSTOKEN) #will work if None for public repos. - return client -def read_yaml_data(keyin): - stream = open("rt_auto.yml", 'r') - dictionary = yaml.load(stream, Loader=yaml.SafeLoader) - try: - dataout = dictionary[keyin] - except KeyError as e: - sys.exit("No data available with name {}. Quitting".format(keyin)) - return dataout +def read_yaml_data(filename): + stream = open(db_filename, 'r') + yaml_data = yaml.load(stream, Loader=yaml.SafeLoader) + stream.close() + return yaml_data def clone_pr_repo(): return +def process_triggers(triggers, commentids): + global machine + lastread = False + trigger_arr = [] + commentid_arr = [] + for (trigger, commentid) in zip(triggers, commentids): + split_trigger = str(trigger).strip("+") + split_trigger = split_trigger.split(":") + if split_trigger[0].lower() == "read": + lastread = commentid + else: + trigger_arr.append(split_trigger) + commentid_arr.append(commentid) + actions = [] + for (mach_act, req_commentid) in zip(trigger_arr, commentid_arr): + if mach_act[0].lower() == machine.lower() or mach_act[0].lower() == "all": + if req_commentid > lastread: + actions.append(mach_act[1]) + print("SAVED ACTION: {}".format(mach_act[1])) + else: + print("COMMENTID {} WAS LOWER THAN LASTREAD {}, SKIPPING...".format(req_commentid, lastread)) + + actions = set(actions) + return(lastread, actions) + +def process_pulls(repo, address): + pulls = repo.get_pulls(state='open', sort='created', base=base) + # mess_with = pd.DataFrame.from_dict(yaml_data) + # pdb.set_trace() + # address_data = get_yaml_subset(address) + # lasttriggerid = address_data['lasttriggerid'] + for pr in pulls: + trigger, commentid = get_triggers(repo, pr) + if trigger == None: + continue + else: + lastread, actions = process_triggers(trigger, commentid) + print("Lastread: {}".format(lastread)) + if bool(lastread): + pr.get_issue_comment(int(lastread)).delete() + print("Deleted previous READ comment") + print("Accepted actions: {}".format(actions)) + if bool(actions): + print("Lets Process Actions") + process_actions(actions) + else: + print("No Actions Found in this PR, skipping.") -def check_for_trigger(comments): +def process_actions(actions): + return + +def get_triggers(repo, pr): # CHECK FOR TRIGGER WORD IN COMMENTS, IF TRIGGERED, CHECK IF USER IS # APPROVED BEFORE ADDING TO LISTS trigger = [] commentid = [] - for comment in comments: - body = comment.body - body_split = body.split() + for comment in pr.get_issue_comments(): + print("Comment ID: {}".format(comment.id)) + # if(comment.id <= lasttriggerid): + # continue + body_split = comment.body.split() for word in body_split: if re.match("\+\+.+\+\+", word): - print("FOUND MATCH {} at comment {}".format(word, comment.id)) - print("USER IS: {}".format(comment.user.login)) - approve_bool = is_user_approved(comment.user.login) - if approve_bool: - print("User {} is approved, continuing".format(comment.user.login)) + print("Found trigger {} at comment {}".format(word, comment.id)) + # approve_bool = is_user_approved(comment.user.login) + if is_collaborator(repo, comment.user.login): trigger.append(word) commentid.append(comment.id) else: @@ -81,25 +135,17 @@ def check_for_trigger(comments): if not trigger: return None, None else: + pr.create_issue_comment("Automated Comment: ++READ++") return trigger, commentid + # Initial items -machine = get_machine_name() #ALWAYS RUN THIS FIRST -repos = get_repos_list() -client = connect_to_github() +static_data = read_yaml_data('rt_auto.yml') #MUST DO THIS FIRST +machine = get_machine_name(static_data) #ALWAYS RUN THIS FIRST +repos = get_yaml_subset(static_data, "repository") +connect_to_github() for name,address,base in repos.values.tolist(): repo = client.get_repo(address) - pulls = repo.get_pulls(state='open', sort='created', base=base) - for pr in pulls: - comments = pr.get_issue_comments() - trigger, commentid = check_for_trigger(comments) - if trigger == None: - continue - else: - print("Out Triggers, commentid: {}, {}".format(trigger, commentid)) - print(pr.head.repo.clone_url) - print(pr.head.ref) - - + triggers = process_pulls(repo, address) diff --git a/rt_auto.yml b/rt_auto.yml index 64ab169526..f4104a59ec 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -2,23 +2,22 @@ machines: - name: 'hera' regexhostname: 'hfe\d\d' + workdir: /scratch1/NCEPDEV/nems/Brian.Curtis - name: "orion" regexhostname: 'Orion-login-\d.HPC.MsState.Edu' + workdir: False - name: "venus" regexhostname: 'v\d\d[a-z]\d' + workdir: False - name: "mars" regexhostname: 'm\d\d[a-z]\d' + workdir: False - name: "surge" regexhostname: 'slogin\d' + workdir: False - name: "Neon" regexhostname: 'Neon' - approvedusers: - - name: "Brian Curtis" - username: "BrianCurtis-NOAA" - machines: {"hera", "orion"} - - name: "Rahul Mahajan" - username: "aerorahul" - machines: {"hera", "orion","venus", "mars"} + workdir: '/home/bcurtis/WORK/' repository: - name: ufs-weather-model address: "BrianCurtis-NOAA/ufs-weather-model" From ed3450f3656888c3dbf3732aac5ec82d6b845c0e Mon Sep 17 00:00:00 2001 From: BuildTools Date: Mon, 14 Dec 2020 16:15:40 -0500 Subject: [PATCH 007/117] Added repo clone and submodule functions --- rt_auto.py | 206 ++++++++++++++++++++++++++++++---------------------- rt_auto.yml | 23 +++--- 2 files changed, 134 insertions(+), 95 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 2a0919224b..0cf3e9cb14 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -3,33 +3,46 @@ # Automation of RT tasks using github cli from github import Github as gh +import datetime import pandas as pd import socket +import subprocess import re import sys import yaml import numpy as np -from os import path +import os import pdb -GHACCESSTOKEN = None +# GHACCESSTOKEN = None db_filename = 'rt_auto.yml' yaml_data = None client = None machine = None -def get_machine_name(static_data): - global machine +class machine_info(): + + def __init__(self, name, regexhostname, workdir): + self.name = name + self.regexhostname = regexhostname + self.workdir = workdir + + + +def get_machine_info(static_data): hostname = socket.gethostname() machines = get_yaml_subset(static_data, "machines") A = machines['name'][machines.index[machines.regexhostname.str.match(hostname)].tolist()] if len(A) == 1: - machine = str(list(A)[0]) - print("Approved Machine Found: {}".format(machine)) - return machine + app_machine_name = str(list(A)[0]) + print("Approved Machine Found: {}".format(app_machine_name)) else: sys.exit("Hostname {} does not match approved list. Quitting".format(hostname)) + mach_db_info = machines.loc[machines[machines['name'] == app_machine_name].index.values[0]] + machine = machine_info(mach_db_info['name'], mach_db_info['regexhostname'], mach_db_info['workdir']) + return machine + # THE FOLLOWING FUNCTION REQUIRES AUTHENTICATION TOKEN TO BE SET def is_collaborator(repo, userin): collaborator_bool = False @@ -58,99 +71,122 @@ def read_yaml_data(filename): stream.close() return yaml_data -def clone_pr_repo(): - return - -def process_triggers(triggers, commentids): +# def process_triggers(pr, triggers, commentids): +def process_triggers(comments_with_triggers, pr, repo): global machine + if not machine: + sys.exit("No machine information set, please use \"get_machine_info()\"") lastread = False - trigger_arr = [] - commentid_arr = [] - for (trigger, commentid) in zip(triggers, commentids): - split_trigger = str(trigger).strip("+") - split_trigger = split_trigger.split(":") - if split_trigger[0].lower() == "read": - lastread = commentid - else: - trigger_arr.append(split_trigger) - commentid_arr.append(commentid) - actions = [] - for (mach_act, req_commentid) in zip(trigger_arr, commentid_arr): - if mach_act[0].lower() == machine.lower() or mach_act[0].lower() == "all": - if req_commentid > lastread: - actions.append(mach_act[1]) - print("SAVED ACTION: {}".format(mach_act[1])) - else: - print("COMMENTID {} WAS LOWER THAN LASTREAD {}, SKIPPING...".format(req_commentid, lastread)) + approved_triggers = [] + trigger_comment_ids = [] + for comment in comments_with_triggers: + body_split = comment.body.split() + for word in body_split: + if re.match("\+\+.+\+\+", word): + if is_collaborator(repo, comment.user.login): + split_trigger = str(word).strip("+") + split_trigger = split_trigger.split(":") + if split_trigger[0].lower() == "read": + if bool(lastread): + print("Found old 'READ' comment: deleting") + pr.get_issue_comment(int(lastread)).delete() + lastread = comment.id + else: + approved_triggers.append(split_trigger) + trigger_comment_ids.append(comment.id) + actions = [] + for (approved_trigger, trigger_comment_id) in zip(approved_triggers, trigger_comment_ids): + if approved_trigger[0].lower() == machine.name.lower() or approved_trigger[0].lower() == "all": + if trigger_comment_id > lastread: + actions.append(approved_trigger[1]) + print("SAVED ACTION {} for machine {}".format(approved_trigger[1], machine.name)) + if not actions: + return lastread, None actions = set(actions) - return(lastread, actions) - -def process_pulls(repo, address): - pulls = repo.get_pulls(state='open', sort='created', base=base) - # mess_with = pd.DataFrame.from_dict(yaml_data) - # pdb.set_trace() - # address_data = get_yaml_subset(address) - # lasttriggerid = address_data['lasttriggerid'] + return lastread, actions + +def get_comments_with_triggers(comments): + comment_list = [] + for comment in comments: + body_split = comment.body.split() + for word in body_split: + if re.match("\+\+.+\+\+", word): + comment_list.append(comment) + if not comment_list: + return None + else: + return comment_list + +def process_pulls(pulls, repo): for pr in pulls: - trigger, commentid = get_triggers(repo, pr) - if trigger == None: + comments = pr.get_issue_comments() + comments_with_triggers = get_comments_with_triggers(comments) + if not comments_with_triggers: + # LETS STOP HERE AND UPDATE THE 'READ' TRIGGER + # ASSUMING THERE'S ZERO 'READ' COMMENTS, ADDING ONE AT END + pr.create_issue_comment("++READ++") continue - else: - lastread, actions = process_triggers(trigger, commentid) - print("Lastread: {}".format(lastread)) - if bool(lastread): + + lastread, actions = process_triggers(comments_with_triggers, pr, repo) + if bool(lastread): + if lastread != max(comment.id for comment in comments): pr.get_issue_comment(int(lastread)).delete() print("Deleted previous READ comment") + pr.create_issue_comment("++READ++") + + + if bool(actions): print("Accepted actions: {}".format(actions)) - if bool(actions): - print("Lets Process Actions") - process_actions(actions) - else: - print("No Actions Found in this PR, skipping.") + pr_workdir = clone_pr_repo(pr) + process_actions(actions) + else: + print("No Actions Found in this PR, skipping.") + +def clone_pr_repo(pr): + global machine + branch = pr.head.ref + repo_name = pr.head.repo.name + git_url = pr.head.repo.html_url + repo_dir_str = machine.workdir+"/"+str(pr.id)+"/"+datetime.datetime.now().strftime("%Y%m%d%H%M%S") + print("repo_dir_str is: {}".format(repo_dir_str)) + + create_repo_commands = [ + ["mkdir -p \""+repo_dir_str+"\"", machine.workdir], + ["git clone -b "+branch+" "+git_url, repo_dir_str], + ["git submodule update --init --recursive", repo_dir_str+"/"+repo_name] + ] + + for command, in_cwd in create_repo_commands: + print("Attempting to run: {}".format(command)) + try: + retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) + retcode.wait() + if retcode.returncode==1: + print("Error Occured:") + print("Stdout: {}".format(retcode.stdout)) + print("Stderr: {}".format(retcode.stderr)) + sys.exit() + except OSError as e: + print("Execution failed: {}".format(e)) + + return repo_dir_str+"/"+repo_name def process_actions(actions): - return + global machine + for action in actions: + print("{} is processing {}".format(machine.name.upper(), action)) -def get_triggers(repo, pr): - # CHECK FOR TRIGGER WORD IN COMMENTS, IF TRIGGERED, CHECK IF USER IS - # APPROVED BEFORE ADDING TO LISTS - trigger = [] - commentid = [] - for comment in pr.get_issue_comments(): - print("Comment ID: {}".format(comment.id)) - # if(comment.id <= lasttriggerid): - # continue - body_split = comment.body.split() - for word in body_split: - if re.match("\+\+.+\+\+", word): - print("Found trigger {} at comment {}".format(word, comment.id)) - # approve_bool = is_user_approved(comment.user.login) - if is_collaborator(repo, comment.user.login): - trigger.append(word) - commentid.append(comment.id) - else: - print("User is NOT approved, skipping trigger") - continue - if not trigger: - return None, None - else: - pr.create_issue_comment("Automated Comment: ++READ++") - return trigger, commentid + return # Initial items -static_data = read_yaml_data('rt_auto.yml') #MUST DO THIS FIRST -machine = get_machine_name(static_data) #ALWAYS RUN THIS FIRST +static_data = read_yaml_data('rt_auto.yml') +machine = get_machine_info(static_data) repos = get_yaml_subset(static_data, "repository") connect_to_github() + +# Maybe a process_repo(repos) function start? for name,address,base in repos.values.tolist(): repo = client.get_repo(address) - triggers = process_pulls(repo, address) - - - -# CHECK IS USER ON APPROVED LIST - -# CHECK IF COMMENT HAS ALREADY BEEN ACKNOWLEDGED - -# CHECK IF COMMENT HAS ACTION TRIGGER: ++ + pull_reqs = repo.get_pulls(state='open', sort='created', base=base) + triggers = process_pulls(pull_reqs, repo) diff --git a/rt_auto.yml b/rt_auto.yml index f4104a59ec..5b0bb9d99d 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -2,23 +2,26 @@ machines: - name: 'hera' regexhostname: 'hfe\d\d' - workdir: /scratch1/NCEPDEV/nems/Brian.Curtis - - name: "orion" + workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis' + - name: 'orion' regexhostname: 'Orion-login-\d.HPC.MsState.Edu' workdir: False - - name: "venus" + - name: 'venus' regexhostname: 'v\d\d[a-z]\d' workdir: False - - name: "mars" + - name: 'mars' regexhostname: 'm\d\d[a-z]\d' workdir: False - - name: "surge" + - name: 'surge' regexhostname: 'slogin\d' workdir: False - - name: "Neon" + - name: 'Neon' regexhostname: 'Neon' - workdir: '/home/bcurtis/WORK/' + workdir: '/home/bcurtis/WORK/test' repository: - - name: ufs-weather-model - address: "BrianCurtis-NOAA/ufs-weather-model" - base: "develop" + - name: 'ufs-weather-model' + address: 'BrianCurtis-NOAA/ufs-weather-model' + base: 'develop' + actions: + - name: 'full_rt' + command: './rt.sh -fe' From 84154fedb1036501998f5a7e64d9590a4c0c6101 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Wed, 16 Dec 2020 13:50:04 -0500 Subject: [PATCH 008/117] Added threaded process submition with callback for regression tests --- rt_auto.py | 62 +++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 50 insertions(+), 12 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 0cf3e9cb14..a35afb2e00 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -6,15 +6,16 @@ import datetime import pandas as pd import socket +import threading import subprocess import re import sys import yaml -import numpy as np import os -import pdb +# WARNING WARNING WARNING: DO NOT COMMIT WITH THE GHACCESSTOKEN # GHACCESSTOKEN = None +# GITHUB RATE LIMIT FOR AUTHENTICATED USERS IS 5000 REQUESTS PER HOUR db_filename = 'rt_auto.yml' yaml_data = None client = None @@ -48,8 +49,11 @@ def is_collaborator(repo, userin): collaborator_bool = False allowed_collaborators = repo.get_collaborators() for collaborator in allowed_collaborators: - if collaborator.login == userin: + collab_perms = repo.get_collaborator_permission(collaborator) + print("Collab {}, Perms {}".format(collaborator.login, collab_perms)) + if collaborator.login == userin && 'write' in collab_perms.split(): collaborator_bool = True + sys.exit() return collaborator_bool def get_yaml_subset(in_yaml, keyin): @@ -101,6 +105,7 @@ def process_triggers(comments_with_triggers, pr, repo): if trigger_comment_id > lastread: actions.append(approved_trigger[1]) print("SAVED ACTION {} for machine {}".format(approved_trigger[1], machine.name)) + if not actions: return lastread, None actions = set(actions) @@ -109,10 +114,9 @@ def process_triggers(comments_with_triggers, pr, repo): def get_comments_with_triggers(comments): comment_list = [] for comment in comments: - body_split = comment.body.split() - for word in body_split: - if re.match("\+\+.+\+\+", word): - comment_list.append(comment) + if [re.match("\+\+.+\+\+", incomment) for incomment in comment.body.split()]: + comment_list.append(comment) + if not comment_list: return None else: @@ -138,11 +142,24 @@ def process_pulls(pulls, repo): if bool(actions): print("Accepted actions: {}".format(actions)) + validate_actions(actions) pr_workdir = clone_pr_repo(pr) - process_actions(actions) + process_actions(actions, pr_workdir, pr) else: print("No Actions Found in this PR, skipping.") +def validate_actions(actions): + approved_commands = [] + valid_actions = get_yaml_subset(static_data, "actions") + for name,command in valid_actions.values.tolist(): + for action in actions: + if name == action.lower(): + print("Action {} approved as valid".format(action.lower())) + approved_commands.append(command) + return approved_commands + + + def clone_pr_repo(pr): global machine branch = pr.head.ref @@ -172,13 +189,34 @@ def clone_pr_repo(pr): return repo_dir_str+"/"+repo_name -def process_actions(actions): - global machine - for action in actions: - print("{} is processing {}".format(machine.name.upper(), action)) +def create_threaded_call(callback, run_fnc): + def runInThread(callback, args, kwargs): + proc = run_fnc + proc.wait() + callback() + return + + thread = threading.Thread(target=runInThread, + args=(callback, args, kwargs)) + thread.start() + return thread # returns immediately after the thread starts + +def thread_end(pr, command, pr_workdir): + global machine + pr.create_issue_comment("AUTOMATED COMMENT: Finished Processing Command '{}' in directory '{}' on machine '{}'".format(command, pr_workdir, machine.name)) return +def process_actions(actions, pr_workdir, pr): + global machine + + approved_commands = validate_actions(actions) + if bool(approved_commands): + for command in approved_commands: + print("{} is processing command {}".format(machine.name.upper(), command)) + pr.create_issue_comment("AUTOMATED COMMENT: Started Processing Command '{}' in directory '{}' on machine '{}'".format(command, pr_workdir, machine.name)) + create_threaded_call(thread_end(pr, command, pr_workdir+"/tests"), subprocess.Popen(command, shell=True, cwd=pr_workdir+"/tests")) + # Initial items static_data = read_yaml_data('rt_auto.yml') machine = get_machine_info(static_data) From 2ba8ec21e70da4161a3762de31b66afe32dc2d24 Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Wed, 16 Dec 2020 13:56:56 -0500 Subject: [PATCH 009/117] remove an extra sys.exit() --- rt_auto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rt_auto.py b/rt_auto.py index a35afb2e00..ce7986159e 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -53,7 +53,7 @@ def is_collaborator(repo, userin): print("Collab {}, Perms {}".format(collaborator.login, collab_perms)) if collaborator.login == userin && 'write' in collab_perms.split(): collaborator_bool = True - sys.exit() + return collaborator_bool def get_yaml_subset(in_yaml, keyin): From cc57e4545a614cd2faea2fb103db6ebf33724afa Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 22 Dec 2020 21:12:03 -0500 Subject: [PATCH 010/117] Switched to using Labels --- rt_auto.py | 202 ++++++++++++++++++++++++---------------------------- rt_auto.yml | 12 +++- 2 files changed, 105 insertions(+), 109 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index ce7986159e..f3c9e39177 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -14,6 +14,7 @@ import os # WARNING WARNING WARNING: DO NOT COMMIT WITH THE GHACCESSTOKEN +GHACCESSTOKEN = "e670110df066c9ba2ceeb8042103255ee1fba4fb" # GHACCESSTOKEN = None # GITHUB RATE LIMIT FOR AUTHENTICATED USERS IS 5000 REQUESTS PER HOUR db_filename = 'rt_auto.yml' @@ -23,12 +24,11 @@ class machine_info(): - def __init__(self, name, regexhostname, workdir): + def __init__(self, name, regexhostname, workdir, baselinedir): self.name = name self.regexhostname = regexhostname self.workdir = workdir - - + self.baselinedir = baselinedir def get_machine_info(static_data): hostname = socket.gethostname() @@ -41,21 +41,10 @@ def get_machine_info(static_data): sys.exit("Hostname {} does not match approved list. Quitting".format(hostname)) mach_db_info = machines.loc[machines[machines['name'] == app_machine_name].index.values[0]] - machine = machine_info(mach_db_info['name'], mach_db_info['regexhostname'], mach_db_info['workdir']) + machine = machine_info(mach_db_info['name'], mach_db_info['regexhostname'], + mach_db_info['workdir'], mach_db_info['baselinedir']) return machine -# THE FOLLOWING FUNCTION REQUIRES AUTHENTICATION TOKEN TO BE SET -def is_collaborator(repo, userin): - collaborator_bool = False - allowed_collaborators = repo.get_collaborators() - for collaborator in allowed_collaborators: - collab_perms = repo.get_collaborator_permission(collaborator) - print("Collab {}, Perms {}".format(collaborator.login, collab_perms)) - if collaborator.login == userin && 'write' in collab_perms.split(): - collaborator_bool = True - - return collaborator_bool - def get_yaml_subset(in_yaml, keyin): try: yaml_subset = in_yaml[keyin] @@ -75,90 +64,18 @@ def read_yaml_data(filename): stream.close() return yaml_data -# def process_triggers(pr, triggers, commentids): -def process_triggers(comments_with_triggers, pr, repo): - global machine - if not machine: - sys.exit("No machine information set, please use \"get_machine_info()\"") - lastread = False - approved_triggers = [] - trigger_comment_ids = [] - for comment in comments_with_triggers: - body_split = comment.body.split() - for word in body_split: - if re.match("\+\+.+\+\+", word): - if is_collaborator(repo, comment.user.login): - split_trigger = str(word).strip("+") - split_trigger = split_trigger.split(":") - if split_trigger[0].lower() == "read": - if bool(lastread): - print("Found old 'READ' comment: deleting") - pr.get_issue_comment(int(lastread)).delete() - lastread = comment.id - else: - approved_triggers.append(split_trigger) - trigger_comment_ids.append(comment.id) - - actions = [] - for (approved_trigger, trigger_comment_id) in zip(approved_triggers, trigger_comment_ids): - if approved_trigger[0].lower() == machine.name.lower() or approved_trigger[0].lower() == "all": - if trigger_comment_id > lastread: - actions.append(approved_trigger[1]) - print("SAVED ACTION {} for machine {}".format(approved_trigger[1], machine.name)) - - if not actions: - return lastread, None - actions = set(actions) - return lastread, actions - -def get_comments_with_triggers(comments): - comment_list = [] - for comment in comments: - if [re.match("\+\+.+\+\+", incomment) for incomment in comment.body.split()]: - comment_list.append(comment) - - if not comment_list: - return None - else: - return comment_list - def process_pulls(pulls, repo): - for pr in pulls: - comments = pr.get_issue_comments() - comments_with_triggers = get_comments_with_triggers(comments) - if not comments_with_triggers: - # LETS STOP HERE AND UPDATE THE 'READ' TRIGGER - # ASSUMING THERE'S ZERO 'READ' COMMENTS, ADDING ONE AT END - pr.create_issue_comment("++READ++") - continue - - lastread, actions = process_triggers(comments_with_triggers, pr, repo) - if bool(lastread): - if lastread != max(comment.id for comment in comments): - pr.get_issue_comment(int(lastread)).delete() - print("Deleted previous READ comment") - pr.create_issue_comment("++READ++") - - - if bool(actions): - print("Accepted actions: {}".format(actions)) - validate_actions(actions) - pr_workdir = clone_pr_repo(pr) - process_actions(actions, pr_workdir, pr) - else: - print("No Actions Found in this PR, skipping.") - -def validate_actions(actions): - approved_commands = [] + global machine valid_actions = get_yaml_subset(static_data, "actions") - for name,command in valid_actions.values.tolist(): - for action in actions: - if name == action.lower(): - print("Action {} approved as valid".format(action.lower())) - approved_commands.append(command) - return approved_commands - - + for pr in pulls: + labels = pr.get_labels() + for label in labels: + if label.name.split('-')[1].lower() == machine.name.lower(): + for action_name, action_command in valid_actions.values.tolist(): + if label.name.split('-')[0].lower() == action_name.lower(): + pr_workdir = clone_pr_repo(pr) + process_actions(action_command, pr_workdir, pr) + sys.exit() def clone_pr_repo(pr): global machine @@ -202,20 +119,20 @@ def runInThread(callback, args, kwargs): return thread # returns immediately after the thread starts +def callback_commands(argument): + callbacks = { + 'RT' = + } + def thread_end(pr, command, pr_workdir): global machine pr.create_issue_comment("AUTOMATED COMMENT: Finished Processing Command '{}' in directory '{}' on machine '{}'".format(command, pr_workdir, machine.name)) return -def process_actions(actions, pr_workdir, pr): - global machine - - approved_commands = validate_actions(actions) - if bool(approved_commands): - for command in approved_commands: - print("{} is processing command {}".format(machine.name.upper(), command)) - pr.create_issue_comment("AUTOMATED COMMENT: Started Processing Command '{}' in directory '{}' on machine '{}'".format(command, pr_workdir, machine.name)) - create_threaded_call(thread_end(pr, command, pr_workdir+"/tests"), subprocess.Popen(command, shell=True, cwd=pr_workdir+"/tests")) +def process_actions(command, pr_workdir, pr): + print("{} is processing command {}".format(machine.name.upper(), command)) + pr.create_issue_comment("AUTOMATED COMMENT: Started Processing Command '{}' in directory '{}' on machine '{}'".format(command, pr_workdir, machine.name)) + create_threaded_call(thread_end(pr, command, pr_workdir+"/tests"), subprocess.Popen(command, shell=True, cwd=pr_workdir+"/tests")) # Initial items static_data = read_yaml_data('rt_auto.yml') @@ -228,3 +145,74 @@ def process_actions(actions, pr_workdir, pr): repo = client.get_repo(address) pull_reqs = repo.get_pulls(state='open', sort='created', base=base) triggers = process_pulls(pull_reqs, repo) + + +# DEAD FUNCTIONS +# def process_triggers(pr, triggers, commentids): +# def process_triggers(comments_with_triggers, pr, repo): +# global machine +# if not machine: +# sys.exit("No machine information set, please use \"get_machine_info()\"") +# lastread = False +# approved_triggers = [] +# trigger_comment_ids = [] +# for comment in comments_with_triggers: +# body_split = comment.body.split() +# for word in body_split: +# if re.match("\+\+.+\+\+", word): +# if is_collaborator(repo, comment.user.login): +# split_trigger = str(word).strip("+") +# split_trigger = split_trigger.split(":") +# if split_trigger[0].lower() == "read": +# if bool(lastread): +# print("Found old 'READ' comment: deleting") +# pr.get_issue_comment(int(lastread)).delete() +# lastread = comment.id +# else: +# approved_triggers.append(split_trigger) +# trigger_comment_ids.append(comment.id) +# +# actions = [] +# for (approved_trigger, trigger_comment_id) in zip(approved_triggers, trigger_comment_ids): +# if approved_trigger[0].lower() == machine.name.lower() or approved_trigger[0].lower() == "all": +# if trigger_comment_id > lastread: +# actions.append(approved_trigger[1]) +# print("SAVED ACTION {} for machine {}".format(approved_trigger[1], machine.name)) +# +# if not actions: +# return lastread, None +# actions = set(actions) +# return lastread, actions +# +# def get_comments_with_triggers(comments): +# comment_list = [] +# for comment in comments: +# if [re.match("\+\+.+\+\+", incomment) for incomment in comment.body.split()]: +# comment_list.append(comment) +# +# if not comment_list: +# return None +# else: +# return comment_list +# +# # THE FOLLOWING FUNCTION REQUIRES AUTHENTICATION TOKEN TO BE SET +# def is_collaborator(repo, userin): +# collaborator_bool = False +# allowed_collaborators = repo.get_collaborators() +# for collaborator in allowed_collaborators: +# collab_perms = repo.get_collaborator_permission(collaborator) +# print("Collab {}, Perms {}".format(collaborator.login, collab_perms)) +# if collaborator.login == userin && 'write' in collab_perms.split(): +# collaborator_bool = True +# +# return collaborator_bool +# +# def validate_actions(actions): +# approved_commands = [] +# valid_actions = get_yaml_subset(static_data, "actions") +# for name,command in valid_actions.values.tolist(): +# for action in actions: +# if name == action.lower(): +# print("Action {} approved as valid".format(action.lower())) +# approved_commands.append(command) +# return approved_commands diff --git a/rt_auto.yml b/rt_auto.yml index 5b0bb9d99d..d36daf03b8 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -3,25 +3,33 @@ - name: 'hera' regexhostname: 'hfe\d\d' workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis' + baselinedir: '' - name: 'orion' regexhostname: 'Orion-login-\d.HPC.MsState.Edu' workdir: False + baselinedir: '' - name: 'venus' regexhostname: 'v\d\d[a-z]\d' workdir: False + baselinedir: '' - name: 'mars' regexhostname: 'm\d\d[a-z]\d' workdir: False + baselinedir: '' - name: 'surge' regexhostname: 'slogin\d' workdir: False + baselinedir: '' - name: 'Neon' regexhostname: 'Neon' workdir: '/home/bcurtis/WORK/test' + baselinedir: '' repository: - name: 'ufs-weather-model' address: 'BrianCurtis-NOAA/ufs-weather-model' base: 'develop' actions: - - name: 'full_rt' - command: './rt.sh -fe' + - name: 'RT' + command: './rt.sh -ef' + - name: 'BL' + command: './rt.sh -cef' From 3db3ff2a071aa0cbc421382c5005a4b1655da98e Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Tue, 5 Jan 2021 15:40:22 -0500 Subject: [PATCH 011/117] Rename RegressionTests_hera.intel.log to RegressionTests_neon.intel.log temp change to test function --- ...ressionTests_hera.intel.log => RegressionTests_neon.intel.log} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/{RegressionTests_hera.intel.log => RegressionTests_neon.intel.log} (100%) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_neon.intel.log similarity index 100% rename from tests/RegressionTests_hera.intel.log rename to tests/RegressionTests_neon.intel.log From ce666c5473f3db41f574ad236f4fb5fc8bfa7928 Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Tue, 5 Jan 2021 16:26:39 -0500 Subject: [PATCH 012/117] Rename RegressionTests_neon.intel.log to RegressionTests_hera.intel.log reverted --- ...ressionTests_neon.intel.log => RegressionTests_hera.intel.log} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/{RegressionTests_neon.intel.log => RegressionTests_hera.intel.log} (100%) diff --git a/tests/RegressionTests_neon.intel.log b/tests/RegressionTests_hera.intel.log similarity index 100% rename from tests/RegressionTests_neon.intel.log rename to tests/RegressionTests_hera.intel.log From c588de7d6ed729fe1ba3ee7dbcf57c25d4a736d1 Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Tue, 5 Jan 2021 16:28:12 -0500 Subject: [PATCH 013/117] AUTO: Updated tests log --- tests/RegressionTests_hera.intel.log | 4576 +------------------------- 1 file changed, 1 insertion(+), 4575 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a234a350c2..4c14b51a37 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,4575 +1 @@ -Mon Dec 21 17:41:13 UTC 2020 -Start Regression test - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_ca_prod -Checking test 014 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_lndp_prod -Checking test 015 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_lndp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_prod -Checking test 046 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfsv16_csawmg_prod -Checking test 051 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gocart_clm_prod -Checking test 053 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gocart_clm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gsd_debug_prod -Checking test 061 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gsd_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_thompson_debug_prod -Checking test 063 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_prod -Checking test 068 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 068 cpld_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_2threads_prod -Checking test 069 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_decomp_prod -Checking test 070 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_satmedmf_prod -Checking test 071 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_ca_prod -Checking test 072 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_mx025_prod -Checking test 073 cpld_control_mx025 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_control_mx025 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_mx025_12h_prod -Checking test 074 cpld_control_mx025_12h results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-03-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 074 cpld_control_mx025_12h PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_restart_mx025_prod -Checking test 075 cpld_restart_mx025 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_restart_mx025 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_c192_prod -Checking test 076 cpld_control_c192 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_control_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_c384_prod -Checking test 077 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 077 cpld_control_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_controlfrac_c384_prod -Checking test 078 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 078 cpld_controlfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_bmark_prod -Checking test 079 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 079 cpld_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_bmark_wave_prod -Checking test 080 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 080 cpld_bmark_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_debug_prod -Checking test 081 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 081 cpld_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_control_cfsr -Checking test 082 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 082 datm_control_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_restart_cfsr -Checking test 083 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 083 datm_restart_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_control_gefs -Checking test 084 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 084 datm_control_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_bulk_cfsr -Checking test 085 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 085 datm_bulk_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_bulk_gefs -Checking test 086 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 086 datm_bulk_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_mx025_cfsr -Checking test 087 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 087 datm_mx025_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_mx025_gefs -Checking test 088 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 088 datm_mx025_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_debug_cfsr -Checking test 089 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 089 datm_debug_cfsr PASS - - -REGRESSION TEST WAS SUCCESSFUL -Mon Dec 21 20:15:27 UTC 2020 -Elapsed time: 02h:34m:14s. Have a nice day! +/home/bcurtis/WORK/test/525814005/20210105162730/ufs-weather-model/tests/RegressionTests_hera.intel.log \ No newline at end of file From 31f10e5441020e9cbe7aab6a9c3cab17ba84ecc0 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 6 Jan 2021 10:08:58 -0500 Subject: [PATCH 014/117] Test change for repo --- tests/RegressionTests_neon.intel.log | 1369 ++++++++++++++++++++++++++ 1 file changed, 1369 insertions(+) create mode 100644 tests/RegressionTests_neon.intel.log diff --git a/tests/RegressionTests_neon.intel.log b/tests/RegressionTests_neon.intel.log new file mode 100644 index 0000000000..037b92ba38 --- /dev/null +++ b/tests/RegressionTests_neon.intel.log @@ -0,0 +1,1369 @@ +Tue Dec 22 18:09:25 UTC 2020 +Start Regression test + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfdlmp_prod +Checking test 001 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 001 fv3_ccpp_gfdlmp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_prod +Checking test 002 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 002 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_prod +Checking test 003 fv3_ccpp_gfs_v16beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 003 fv3_ccpp_gfs_v16beta PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 004 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 005 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 006 fv3_ccpp_gfs_v16beta_flake PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gsd_prod +Checking test 009 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_gsd PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_thompson_prod +Checking test 010 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_thompson_no_aero_prod +Checking test 011 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_rrfs_v1beta_prod +Checking test 012 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_control_debug_prod +Checking test 015 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 015 fv3_ccpp_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 017 fv3_ccpp_gfs_v16beta_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_multigases_prod +Checking test 020 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 020 fv3_ccpp_multigases PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +REGRESSION TEST WAS SUCCESSFUL +Tue Dec 22 18:50:38 UTC 2020 +Elapsed time: 00h:41m:14s. Have a nice day! From 239d8391ac12e49b4ed97c64f01c496b31a6cc72 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 7 Jan 2021 10:21:56 -0500 Subject: [PATCH 015/117] Revert changes for testing --- tests/RegressionTests_hera.intel.log | 1370 +++++++++++++++++++++++++- 1 file changed, 1369 insertions(+), 1 deletion(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 4c14b51a37..037b92ba38 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1 +1,1369 @@ -/home/bcurtis/WORK/test/525814005/20210105162730/ufs-weather-model/tests/RegressionTests_hera.intel.log \ No newline at end of file +Tue Dec 22 18:09:25 UTC 2020 +Start Regression test + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfdlmp_prod +Checking test 001 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 001 fv3_ccpp_gfdlmp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_prod +Checking test 002 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 002 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_prod +Checking test 003 fv3_ccpp_gfs_v16beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 003 fv3_ccpp_gfs_v16beta PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 004 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 005 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 006 fv3_ccpp_gfs_v16beta_flake PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gsd_prod +Checking test 009 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_gsd PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_thompson_prod +Checking test 010 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_thompson_no_aero_prod +Checking test 011 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_rrfs_v1beta_prod +Checking test 012 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_control_debug_prod +Checking test 015 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 015 fv3_ccpp_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 017 fv3_ccpp_gfs_v16beta_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_multigases_prod +Checking test 020 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 020 fv3_ccpp_multigases PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +REGRESSION TEST WAS SUCCESSFUL +Tue Dec 22 18:50:38 UTC 2020 +Elapsed time: 00h:41m:14s. Have a nice day! From 923c46deac67bbddb1312c5bde7a367cb469bfa7 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 8 Jan 2021 13:34:10 -0500 Subject: [PATCH 016/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 037b92ba38..592d5c76c9 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1367,3 +1367,4 @@ Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL Tue Dec 22 18:50:38 UTC 2020 Elapsed time: 00h:41m:14s. Have a nice day! +GOOSEBUMPS From 94d1e738ca1e97ddf946f2cdc492298501e1cbb7 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 8 Jan 2021 13:45:05 -0500 Subject: [PATCH 017/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 592d5c76c9..aceb0649db 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1368,3 +1368,4 @@ REGRESSION TEST WAS SUCCESSFUL Tue Dec 22 18:50:38 UTC 2020 Elapsed time: 00h:41m:14s. Have a nice day! GOOSEBUMPS +GOOSEBUMPS2 From 61aae9988f5b1252f8fee230cfbb021a925d54ed Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 8 Jan 2021 13:54:41 -0500 Subject: [PATCH 018/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index aceb0649db..535308199d 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1369,3 +1369,4 @@ Tue Dec 22 18:50:38 UTC 2020 Elapsed time: 00h:41m:14s. Have a nice day! GOOSEBUMPS GOOSEBUMPS2 +GOOSEBUMPS2 From e3c293106d7d93e8a93417f9ad2f7653cd0a3e16 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 8 Jan 2021 14:10:46 -0500 Subject: [PATCH 019/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 535308199d..05e7050d20 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1370,3 +1370,4 @@ Elapsed time: 00h:41m:14s. Have a nice day! GOOSEBUMPS GOOSEBUMPS2 GOOSEBUMPS2 +GOOSEBUMPS2 From f47c1ad7134f1fe8afefbd4e39aa73c865ff13e0 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 8 Jan 2021 14:36:54 -0500 Subject: [PATCH 020/117] Add's ability to retrieve RT logs for PR repo. Moves access token external to code --- rt_auto.py | 208 ++++++++++++++++++++++------------------------------ rt_auto.yml | 20 +++-- 2 files changed, 103 insertions(+), 125 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index f3c9e39177..a089f71398 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -13,15 +13,6 @@ import yaml import os -# WARNING WARNING WARNING: DO NOT COMMIT WITH THE GHACCESSTOKEN -GHACCESSTOKEN = "e670110df066c9ba2ceeb8042103255ee1fba4fb" -# GHACCESSTOKEN = None -# GITHUB RATE LIMIT FOR AUTHENTICATED USERS IS 5000 REQUESTS PER HOUR -db_filename = 'rt_auto.yml' -yaml_data = None -client = None -machine = None - class machine_info(): def __init__(self, name, regexhostname, workdir, baselinedir): @@ -30,6 +21,30 @@ def __init__(self, name, regexhostname, workdir, baselinedir): self.workdir = workdir self.baselinedir = baselinedir +def get_access_token(): + # CREATE FILE "accesstoken.txt" add API Token and change perms appropriately + # GITHUB RATE LIMIT FOR AUTHENTICATED USERS IS 5000 REQUESTS PER HOUR + f = open("accesstoken.txt", 'rb') + GHACCESSTOKEN = f.read() + f.close() + GHACCESSTOKEN = GHACCESSTOKEN.decode("utf-8").strip('\n') + + return GHACCESSTOKEN + +def read_yaml_data(filename): + stream = open(db_filename, 'r') + yaml_data = yaml.load(stream, Loader=yaml.SafeLoader) + stream.close() + return yaml_data + +def get_yaml_subset(in_yaml, keyin): + try: + yaml_subset = in_yaml[keyin] + except: + sys.exit("Unable to get yaml subset: {}. Quitting".format(keyin)) + df = pd.DataFrame.from_dict(yaml_subset) + return df + def get_machine_info(static_data): hostname = socket.gethostname() machines = get_yaml_subset(static_data, "machines") @@ -45,27 +60,11 @@ def get_machine_info(static_data): mach_db_info['workdir'], mach_db_info['baselinedir']) return machine -def get_yaml_subset(in_yaml, keyin): - try: - yaml_subset = in_yaml[keyin] - except: - sys.exit("Unable to get yaml subset: {}. Quitting".format(keyin)) - df = pd.DataFrame.from_dict(yaml_subset) - return df - -def connect_to_github(): # In case there's more needed later - global GHACCESSTOKEN - global client +def connect_to_github(GHACCESSTOKEN): # In case there's more needed later client = gh(GHACCESSTOKEN) #will work if None for public repos. - -def read_yaml_data(filename): - stream = open(db_filename, 'r') - yaml_data = yaml.load(stream, Loader=yaml.SafeLoader) - stream.close() - return yaml_data + return client def process_pulls(pulls, repo): - global machine valid_actions = get_yaml_subset(static_data, "actions") for pr in pulls: labels = pr.get_labels() @@ -73,21 +72,27 @@ def process_pulls(pulls, repo): if label.name.split('-')[1].lower() == machine.name.lower(): for action_name, action_command in valid_actions.values.tolist(): if label.name.split('-')[0].lower() == action_name.lower(): - pr_workdir = clone_pr_repo(pr) - process_actions(action_command, pr_workdir, pr) - sys.exit() + try: + pr_workdir = clone_pr_repo(pr) + pa_ret = process_actions(action_command, pr_workdir, pr) + if pa_ret == 0: + pr.remove_from_labels(label.name.split('-')[0]+"-"+label.name.split('-')[1]) + + except: + print("ERROR RUNNING RT {}".format(action_name)) + continue def clone_pr_repo(pr): - global machine branch = pr.head.ref repo_name = pr.head.repo.name git_url = pr.head.repo.html_url repo_dir_str = machine.workdir+"/"+str(pr.id)+"/"+datetime.datetime.now().strftime("%Y%m%d%H%M%S") - print("repo_dir_str is: {}".format(repo_dir_str)) + git_url_w_login = git_url.split('//') + git_url_w_login = git_url_w_login[0]+"//"+GHUSERNAME+":"+GHACCESSTOKEN+"@"+git_url_w_login[1] create_repo_commands = [ ["mkdir -p \""+repo_dir_str+"\"", machine.workdir], - ["git clone -b "+branch+" "+git_url, repo_dir_str], + ["git clone -b "+branch+" "+git_url_w_login, repo_dir_str], ["git submodule update --init --recursive", repo_dir_str+"/"+repo_name] ] @@ -103,116 +108,79 @@ def clone_pr_repo(pr): sys.exit() except OSError as e: print("Execution failed: {}".format(e)) + sys.exit() return repo_dir_str+"/"+repo_name def create_threaded_call(callback, run_fnc): - def runInThread(callback, args, kwargs): + def runInThread(callback, run_fnc): proc = run_fnc proc.wait() callback() return thread = threading.Thread(target=runInThread, - args=(callback, args, kwargs)) + args=(callback, run_fnc)) thread.start() return thread # returns immediately after the thread starts -def callback_commands(argument): - callbacks = { - 'RT' = - } - -def thread_end(pr, command, pr_workdir): - global machine - pr.create_issue_comment("AUTOMATED COMMENT: Finished Processing Command '{}' in directory '{}' on machine '{}'".format(command, pr_workdir, machine.name)) - return +def move_rt_logs(pr, pr_workdir): + rt_log = 'tests/RegressionTests_hera.intel.log' + # rt_log = 'RegressionTests_'+machine.name+'.intel.log' + filepath = pr_workdir+'/'+rt_log + print("File path is {}".format(filepath)) + if os.path.exists(filepath): + branch = pr.head.ref + print("Branch used is: {}".format(branch)) + repo = pr.head.repo + + move_rt_commands = [ + ['echo "GOOSEBUMPS2" >> '+rt_log, pr_workdir], + ['git add '+rt_log, pr_workdir], + ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pr_workdir], + ['git push origin '+branch, pr_workdir] + ] + for command, in_cwd in move_rt_commands: + print("Attempting to run: {}".format(command)) + try: + retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) + retcode.wait() + if retcode.returncode==1: + print("Error Occured:") + print("Stdout: {}".format(retcode.stdout)) + print("Stderr: {}".format(retcode.stderr)) + sys.exit() + except OSError as e: + print("Execution failed: {}".format(e)) + sys.exit() + else: + print("ERROR: Could not find RT log") + sys.exit() def process_actions(command, pr_workdir, pr): - print("{} is processing command {}".format(machine.name.upper(), command)) - pr.create_issue_comment("AUTOMATED COMMENT: Started Processing Command '{}' in directory '{}' on machine '{}'".format(command, pr_workdir, machine.name)) - create_threaded_call(thread_end(pr, command, pr_workdir+"/tests"), subprocess.Popen(command, shell=True, cwd=pr_workdir+"/tests")) + try: + print("{} attempting command {}".format(machine.name.upper(), command)) + thethread = create_threaded_call(move_rt_logs(pr, pr_workdir), subprocess.Popen(command, shell=True, cwd=pr_workdir+"/tests")) + except: + print("{} failed command {}".format(machine.name.upper(), command)) + return 1 + return 0 + # pr.create_issue_comment("AUTOMATED COMMENT: Submitted Command '{}' in directory '{}' on machine '{}'".format(command, pr_workdir, machine.name)) + +# START OF MAIN +db_filename = 'rt_auto.yml' +machine = get_machine_info(read_yaml_data(db_filename)) +GHUSERNAME = "BrianCurtis-NOAA" +GHACCESSTOKEN = get_access_token() # Initial items static_data = read_yaml_data('rt_auto.yml') -machine = get_machine_info(static_data) repos = get_yaml_subset(static_data, "repository") -connect_to_github() +client = connect_to_github(GHACCESSTOKEN) # Maybe a process_repo(repos) function start? for name,address,base in repos.values.tolist(): repo = client.get_repo(address) pull_reqs = repo.get_pulls(state='open', sort='created', base=base) triggers = process_pulls(pull_reqs, repo) - - -# DEAD FUNCTIONS -# def process_triggers(pr, triggers, commentids): -# def process_triggers(comments_with_triggers, pr, repo): -# global machine -# if not machine: -# sys.exit("No machine information set, please use \"get_machine_info()\"") -# lastread = False -# approved_triggers = [] -# trigger_comment_ids = [] -# for comment in comments_with_triggers: -# body_split = comment.body.split() -# for word in body_split: -# if re.match("\+\+.+\+\+", word): -# if is_collaborator(repo, comment.user.login): -# split_trigger = str(word).strip("+") -# split_trigger = split_trigger.split(":") -# if split_trigger[0].lower() == "read": -# if bool(lastread): -# print("Found old 'READ' comment: deleting") -# pr.get_issue_comment(int(lastread)).delete() -# lastread = comment.id -# else: -# approved_triggers.append(split_trigger) -# trigger_comment_ids.append(comment.id) -# -# actions = [] -# for (approved_trigger, trigger_comment_id) in zip(approved_triggers, trigger_comment_ids): -# if approved_trigger[0].lower() == machine.name.lower() or approved_trigger[0].lower() == "all": -# if trigger_comment_id > lastread: -# actions.append(approved_trigger[1]) -# print("SAVED ACTION {} for machine {}".format(approved_trigger[1], machine.name)) -# -# if not actions: -# return lastread, None -# actions = set(actions) -# return lastread, actions -# -# def get_comments_with_triggers(comments): -# comment_list = [] -# for comment in comments: -# if [re.match("\+\+.+\+\+", incomment) for incomment in comment.body.split()]: -# comment_list.append(comment) -# -# if not comment_list: -# return None -# else: -# return comment_list -# -# # THE FOLLOWING FUNCTION REQUIRES AUTHENTICATION TOKEN TO BE SET -# def is_collaborator(repo, userin): -# collaborator_bool = False -# allowed_collaborators = repo.get_collaborators() -# for collaborator in allowed_collaborators: -# collab_perms = repo.get_collaborator_permission(collaborator) -# print("Collab {}, Perms {}".format(collaborator.login, collab_perms)) -# if collaborator.login == userin && 'write' in collab_perms.split(): -# collaborator_bool = True -# -# return collaborator_bool -# -# def validate_actions(actions): -# approved_commands = [] -# valid_actions = get_yaml_subset(static_data, "actions") -# for name,command in valid_actions.values.tolist(): -# for action in actions: -# if name == action.lower(): -# print("Action {} approved as valid".format(action.lower())) -# approved_commands.append(command) -# return approved_commands diff --git a/rt_auto.yml b/rt_auto.yml index d36daf03b8..28aaf4eda1 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -8,19 +8,27 @@ regexhostname: 'Orion-login-\d.HPC.MsState.Edu' workdir: False baselinedir: '' - - name: 'venus' + # VENUS + - name: 'wcoss_dell_p3' regexhostname: 'v\d\d[a-z]\d' workdir: False baselinedir: '' - - name: 'mars' + # MARS + - name: 'wcoss_dell_p3' regexhostname: 'm\d\d[a-z]\d' workdir: False baselinedir: '' - - name: 'surge' + # SURGE + - name: 'wcoss_cray' regexhostname: 'slogin\d' workdir: False baselinedir: '' - - name: 'Neon' + # LUNA + - name: 'wcoss_cray' + regexhostname: 'llogin\d' + workdir: False + baselinedir: '' + - name: 'neon' regexhostname: 'Neon' workdir: '/home/bcurtis/WORK/test' baselinedir: '' @@ -30,6 +38,8 @@ base: 'develop' actions: - name: 'RT' - command: './rt.sh -ef' + command: './rt.sh -n cpld_control' + # - name: 'RT' + # command: './rt.sh -ef' - name: 'BL' command: './rt.sh -cef' From 7ffde33887cfe08079c035f820f67409ed7f9396 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 11 Jan 2021 21:47:29 +0000 Subject: [PATCH 021/117] TEST ADDITION HOPEFUL L --- tests/RegressionTests_hera.intel.log | 1335 +------------------------- 1 file changed, 11 insertions(+), 1324 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 05e7050d20..58a5e0f132 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,848 +1,16 @@ -Tue Dec 22 18:09:25 UTC 2020 +Mon Jan 11 21:10:50 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfdlmp_prod -Checking test 001 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 001 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_prod -Checking test 002 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 002 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_prod -Checking test 003 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 003 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 004 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 005 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 006 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gsd_prod -Checking test 009 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_thompson_prod -Checking test 010 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_thompson_no_aero_prod -Checking test 011 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_rrfs_v1beta_prod -Checking test 012 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_123447/cpld_control_prod +Checking test 001 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK Comparing dynf024.tile1.nc .........OK Comparing dynf024.tile2.nc .........OK Comparing dynf024.tile3.nc .........OK @@ -850,395 +18,7 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_control_debug_prod -Checking test 015 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 015 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK Comparing RESTART/fv_core.res.tile2.nc .........OK Comparing RESTART/fv_core.res.tile3.nc .........OK @@ -1269,105 +49,12 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 001 cpld_control PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 22 18:50:38 UTC 2020 -Elapsed time: 00h:41m:14s. Have a nice day! -GOOSEBUMPS -GOOSEBUMPS2 -GOOSEBUMPS2 -GOOSEBUMPS2 +Mon Jan 11 21:26:53 UTC 2021 +Elapsed time: 00h:16m:04s. Have a nice day! From e32eb4bea698988a7f9bb3a386fde1c11b7d146c Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 11 Jan 2021 22:33:56 +0000 Subject: [PATCH 022/117] Almost done implementing RT log files back to PR, saving files for hera downtime --- rt_auto.py | 84 ++++++++++++++++++++++++++--------------------------- rt_auto.yml | 6 ++-- 2 files changed, 46 insertions(+), 44 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index a089f71398..305f53ceed 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -12,6 +12,7 @@ import sys import yaml import os +from importlib import import_module class machine_info(): @@ -48,17 +49,17 @@ def get_yaml_subset(in_yaml, keyin): def get_machine_info(static_data): hostname = socket.gethostname() machines = get_yaml_subset(static_data, "machines") - A = machines['name'][machines.index[machines.regexhostname.str.match(hostname)].tolist()] - if len(A) == 1: - app_machine_name = str(list(A)[0]) - print("Approved Machine Found: {}".format(app_machine_name)) - else: - sys.exit("Hostname {} does not match approved list. Quitting".format(hostname)) - - mach_db_info = machines.loc[machines[machines['name'] == app_machine_name].index.values[0]] - machine = machine_info(mach_db_info['name'], mach_db_info['regexhostname'], - mach_db_info['workdir'], mach_db_info['baselinedir']) - return machine + regexmachines = machines['regexhostname'].values + for i, mach in enumerate(regexmachines): + if re.search(mach, hostname): + print("{} is an approved machine".format(hostname)) + mach_db_info = machines.iloc[i] + machine = machine_info(mach_db_info['name'], mach_db_info['regexhostname'], + mach_db_info['workdir'], mach_db_info['baselinedir']) + return machine + else: + continue + sys.exit("Hostname {} does not match approved list. Quitting".format(hostname)) def connect_to_github(GHACCESSTOKEN): # In case there's more needed later client = gh(GHACCESSTOKEN) #will work if None for public repos. @@ -70,16 +71,16 @@ def process_pulls(pulls, repo): labels = pr.get_labels() for label in labels: if label.name.split('-')[1].lower() == machine.name.lower(): - for action_name, action_command in valid_actions.values.tolist(): + for action_name, action_command, action_callback in valid_actions.values.tolist(): if label.name.split('-')[0].lower() == action_name.lower(): try: pr_workdir = clone_pr_repo(pr) - pa_ret = process_actions(action_command, pr_workdir, pr) + pa_ret = process_actions(action_callback, action_command, pr_workdir, pr) if pa_ret == 0: pr.remove_from_labels(label.name.split('-')[0]+"-"+label.name.split('-')[1]) - except: - print("ERROR RUNNING RT {}".format(action_name)) + except Exception as e: + print("ERROR RUNNING RT {} with error: {}".format(action_name, e)) continue def clone_pr_repo(pr): @@ -93,7 +94,8 @@ def clone_pr_repo(pr): create_repo_commands = [ ["mkdir -p \""+repo_dir_str+"\"", machine.workdir], ["git clone -b "+branch+" "+git_url_w_login, repo_dir_str], - ["git submodule update --init --recursive", repo_dir_str+"/"+repo_name] + ["git submodule update --init --recursive", repo_dir_str+"/"+repo_name], + ["module use modulefiles/{}.intel && module load fv3".format(machine.name), repo_dir_str+"/"+repo_name] ] for command, in_cwd in create_repo_commands: @@ -112,31 +114,18 @@ def clone_pr_repo(pr): return repo_dir_str+"/"+repo_name -def create_threaded_call(callback, run_fnc): - def runInThread(callback, run_fnc): - proc = run_fnc - proc.wait() - callback() - return - - thread = threading.Thread(target=runInThread, - args=(callback, run_fnc)) - thread.start() - return thread # returns immediately after the thread starts def move_rt_logs(pr, pr_workdir): - rt_log = 'tests/RegressionTests_hera.intel.log' - # rt_log = 'RegressionTests_'+machine.name+'.intel.log' - filepath = pr_workdir+'/'+rt_log - print("File path is {}".format(filepath)) + rt_log = 'RegressionTests_'+machine.name+'.intel.log' + filepath = pr_workdir+'/tests/'+rt_log + print("File path issssss {}".format(filepath)) if os.path.exists(filepath): branch = pr.head.ref print("Branch used is: {}".format(branch)) - repo = pr.head.repo move_rt_commands = [ - ['echo "GOOSEBUMPS2" >> '+rt_log, pr_workdir], + #['echo "GOOSEBUMPS2" >> '+rt_log, pr_workdir], ['git add '+rt_log, pr_workdir], ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pr_workdir], ['git push origin '+branch, pr_workdir] @@ -158,15 +147,26 @@ def move_rt_logs(pr, pr_workdir): print("ERROR: Could not find RT log") sys.exit() -def process_actions(command, pr_workdir, pr): - try: - print("{} attempting command {}".format(machine.name.upper(), command)) - thethread = create_threaded_call(move_rt_logs(pr, pr_workdir), subprocess.Popen(command, shell=True, cwd=pr_workdir+"/tests")) - except: - print("{} failed command {}".format(machine.name.upper(), command)) - return 1 - return 0 - # pr.create_issue_comment("AUTOMATED COMMENT: Submitted Command '{}' in directory '{}' on machine '{}'".format(command, pr_workdir, machine.name)) +def process_actions(callback_fnc, command, pr_workdir, pr): + + def create_threaded_call(callback_fnc, command, cwd_in): + + def runInThread(callback_fnc, command, cwd_in): + proc = subprocess.Popen(command, shell=True, cwd=cwd_in) + proc.wait() + globals()[callback_fnc](pr, pr_workdir) + return + + thread = threading.Thread(target=runInThread, + args=(callback_fnc, command, cwd_in)) + thread.start() + + return thread # returns immediately after the thread starts + + print("{} attempting command {}".format(machine.name.upper(), command)) + thread = create_threaded_call(callback_fnc, command, pr_workdir+'/tests') + # create_threaded_call(callback_fnc, [1,2,3,4]) + # print("Thread is {}".format(thread)) # START OF MAIN db_filename = 'rt_auto.yml' diff --git a/rt_auto.yml b/rt_auto.yml index 28aaf4eda1..f9f53300a9 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -1,8 +1,8 @@ --- machines: - name: 'hera' - regexhostname: 'hfe\d\d' - workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis' + regexhostname: 'hfe' + workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis/test' baselinedir: '' - name: 'orion' regexhostname: 'Orion-login-\d.HPC.MsState.Edu' @@ -39,7 +39,9 @@ actions: - name: 'RT' command: './rt.sh -n cpld_control' + callback_fnc: 'move_rt_logs' # - name: 'RT' # command: './rt.sh -ef' - name: 'BL' command: './rt.sh -cef' + callback_fnc: '' From 2271450c16310935e5bb3a6154f3d384eafcd01e Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 12 Jan 2021 15:06:51 -0600 Subject: [PATCH 023/117] Updates from 1/12/21-Orion --- rt_auto.py | 5 ----- rt_auto.sh | 29 +++++++++++++++++++++++++++++ rt_auto.yml | 4 ++-- 3 files changed, 31 insertions(+), 7 deletions(-) create mode 100644 rt_auto.sh diff --git a/rt_auto.py b/rt_auto.py index 305f53ceed..674dd86d7f 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -11,8 +11,6 @@ import re import sys import yaml -import os -from importlib import import_module class machine_info(): @@ -114,8 +112,6 @@ def clone_pr_repo(pr): return repo_dir_str+"/"+repo_name - - def move_rt_logs(pr, pr_workdir): rt_log = 'RegressionTests_'+machine.name+'.intel.log' filepath = pr_workdir+'/tests/'+rt_log @@ -125,7 +121,6 @@ def move_rt_logs(pr, pr_workdir): print("Branch used is: {}".format(branch)) move_rt_commands = [ - #['echo "GOOSEBUMPS2" >> '+rt_log, pr_workdir], ['git add '+rt_log, pr_workdir], ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pr_workdir], ['git push origin '+branch, pr_workdir] diff --git a/rt_auto.sh b/rt_auto.sh new file mode 100644 index 0000000000..82080d3596 --- /dev/null +++ b/rt_auto.sh @@ -0,0 +1,29 @@ +#!/bin/bash +set -eux + +export RT_COMPILER='intel' +source tests/detect_machine.sh +echo "Machine ID: "+$MACHINE_ID +if [[ $MACHINE_ID = hera.* ]]; then + export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages + python rt_auto.py +elif [[ $MACHINE_ID = orion.* ]]; then + export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages + python rt_auto.py +elif [[ $MACHINE_ID = jet.* ]]; then + export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages + python rt_auto.py +elif [[ $MACHINE_ID = gaea.* ]]; then + export PATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/lib/python3.7/site-packages + python rt_auto.py +elif [[ $MACHINE_ID = cheyenne.* ]]; then + export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages + python rt_auto.py +else + echo "No Python Path for this machine. automated RT not starting" +fi diff --git a/rt_auto.yml b/rt_auto.yml index f9f53300a9..398a26b599 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -1,12 +1,12 @@ --- machines: - name: 'hera' - regexhostname: 'hfe' + regexhostname: 'hfe\d\d' workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis/test' baselinedir: '' - name: 'orion' regexhostname: 'Orion-login-\d.HPC.MsState.Edu' - workdir: False + workdir: '/work/noaa/nems/bcurtis/test' baselinedir: '' # VENUS - name: 'wcoss_dell_p3' From 981ac9d949e50c68eea8b4e4666d262db01f9517 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 12 Jan 2021 21:43:44 +0000 Subject: [PATCH 024/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 5342 +------------------------- 1 file changed, 58 insertions(+), 5284 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 2a17002026..ec410393a1 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,5288 +1,62 @@ -Thu Jan 7 16:23:37 UTC 2021 +Tue Jan 12 21:35:07 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v16beta_prod -Checking test 046 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfsv16_csawmg_prod -Checking test 051 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gocart_clm_prod -Checking test 053 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gocart_clm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gsd_debug_prod -Checking test 061 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gsd_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_thompson_debug_prod -Checking test 063 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_control_prod -Checking test 068 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 068 cpld_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_prod -Checking test 069 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_controlfrac_prod -Checking test 070 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_controlfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restartfrac_prod -Checking test 071 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_restartfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_2threads_prod -Checking test 072 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_2threads PASS - - baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_decomp_prod -Checking test 073 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_satmedmf_prod -Checking test 074 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_ca_prod -Checking test 075 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_control_c192_prod -Checking test 076 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 076 cpld_control_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_c192_prod -Checking test 077 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_restart_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_controlfrac_c192_prod -Checking test 078 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_controlfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restartfrac_c192_prod -Checking test 079 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_restartfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_control_c384_prod -Checking test 080 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 080 cpld_control_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_c384_prod -Checking test 081 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_restart_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_controlfrac_c384_prod -Checking test 082 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_controlfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restartfrac_c384_prod -Checking test 083 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_restartfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmark_prod -Checking test 084 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 084 cpld_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_bmark_prod -Checking test 085 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_restart_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmarkfrac_prod -Checking test 086 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_bmarkfrac_prod -Checking test 087 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_restart_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmarkfrac_v16_prod -Checking test 088 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 088 cpld_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_bmarkfrac_v16_prod -Checking test 089 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmark_wave_prod -Checking test 090 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 090 cpld_bmark_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmarkfrac_wave_prod -Checking test 091 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmarkfrac_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmarkfrac_wave_v16_prod -Checking test 092 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 092 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_debug_prod -Checking test 093 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 093 cpld_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_debugfrac_prod -Checking test 094 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 094 cpld_debugfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/datm_control_cfsr -Checking test 095 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 095 datm_control_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/datm_restart_cfsr -Checking test 096 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_restart_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/datm_control_gefs -Checking test 097 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/datm_bulk_cfsr -Checking test 098 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_bulk_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/datm_bulk_gefs -Checking test 099 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_bulk_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/datm_mx025_cfsr -Checking test 100 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_mx025_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/datm_mx025_gefs -Checking test 101 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_mx025_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/datm_debug_cfsr -Checking test 102 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 102 datm_debug_cfsr PASS - - -REGRESSION TEST WAS SUCCESSFUL -Thu Jan 7 19:17:41 UTC 2021 -Elapsed time: 02h:54m:04s. Have a nice day! +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_184859/cpld_control_prod +Checking test 001 cpld_control results .... + Comparing phyf024.tile1.nc ............MISSING file + Comparing phyf024.tile2.nc ............MISSING file + Comparing phyf024.tile3.nc ............MISSING file + Comparing phyf024.tile4.nc ............MISSING file + Comparing phyf024.tile5.nc ............MISSING file + Comparing phyf024.tile6.nc ............MISSING file + Comparing dynf024.tile1.nc ............MISSING file + Comparing dynf024.tile2.nc ............MISSING file + Comparing dynf024.tile3.nc ............MISSING file + Comparing dynf024.tile4.nc ............MISSING file + Comparing dynf024.tile5.nc ............MISSING file + Comparing dynf024.tile6.nc ............MISSING file + Comparing RESTART/coupler.res ............MISSING file + Comparing RESTART/fv_core.res.nc ............MISSING file + Comparing RESTART/fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/phy_data.tile1.nc ............MISSING file + Comparing RESTART/phy_data.tile2.nc ............MISSING file + Comparing RESTART/phy_data.tile3.nc ............MISSING file + Comparing RESTART/phy_data.tile4.nc ............MISSING file + Comparing RESTART/phy_data.tile5.nc ............MISSING file + Comparing RESTART/phy_data.tile6.nc ............MISSING file + Comparing RESTART/sfc_data.tile1.nc ............MISSING file + Comparing RESTART/sfc_data.tile2.nc ............MISSING file + Comparing RESTART/sfc_data.tile3.nc ............MISSING file + Comparing RESTART/sfc_data.tile4.nc ............MISSING file + Comparing RESTART/sfc_data.tile5.nc ............MISSING file + Comparing RESTART/sfc_data.tile6.nc ............MISSING file + Comparing RESTART/MOM.res.nc ............MISSING file + Comparing RESTART/iced.2016-10-04-00000.nc ............MISSING file + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc ............MISSING file +Test 001 cpld_control FAIL + +FAILED TESTS: +Test cpld_control 001 failed in check_result failed + +REGRESSION TEST FAILED +Tue Jan 12 21:43:43 UTC 2021 +Elapsed time: 00h:08m:36s. Have a nice day! From b917a085b8ea7078fb742d8f1836513fb69b593f Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 12 Jan 2021 21:45:57 +0000 Subject: [PATCH 025/117] fix for finding RT log file --- rt_auto.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 674dd86d7f..13130fe0e5 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -11,6 +11,7 @@ import re import sys import yaml +import os class machine_info(): @@ -113,8 +114,8 @@ def clone_pr_repo(pr): return repo_dir_str+"/"+repo_name def move_rt_logs(pr, pr_workdir): - rt_log = 'RegressionTests_'+machine.name+'.intel.log' - filepath = pr_workdir+'/tests/'+rt_log + rt_log = 'tests/RegressionTests_'+machine.name+'.intel.log' + filepath = pr_workdir+'/'+rt_log print("File path issssss {}".format(filepath)) if os.path.exists(filepath): branch = pr.head.ref From 7957cce5ac57caa7ad871cc5238951608e5834be Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 12 Jan 2021 22:02:42 +0000 Subject: [PATCH 026/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 62 ++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 tests/RegressionTests_hera.intel.log diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log new file mode 100644 index 0000000000..50ff7293f3 --- /dev/null +++ b/tests/RegressionTests_hera.intel.log @@ -0,0 +1,62 @@ +Tue Jan 12 21:54:07 UTC 2021 +Start Regression test + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_110066/cpld_control_prod +Checking test 001 cpld_control results .... + Comparing phyf024.tile1.nc ............MISSING file + Comparing phyf024.tile2.nc ............MISSING file + Comparing phyf024.tile3.nc ............MISSING file + Comparing phyf024.tile4.nc ............MISSING file + Comparing phyf024.tile5.nc ............MISSING file + Comparing phyf024.tile6.nc ............MISSING file + Comparing dynf024.tile1.nc ............MISSING file + Comparing dynf024.tile2.nc ............MISSING file + Comparing dynf024.tile3.nc ............MISSING file + Comparing dynf024.tile4.nc ............MISSING file + Comparing dynf024.tile5.nc ............MISSING file + Comparing dynf024.tile6.nc ............MISSING file + Comparing RESTART/coupler.res ............MISSING file + Comparing RESTART/fv_core.res.nc ............MISSING file + Comparing RESTART/fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/phy_data.tile1.nc ............MISSING file + Comparing RESTART/phy_data.tile2.nc ............MISSING file + Comparing RESTART/phy_data.tile3.nc ............MISSING file + Comparing RESTART/phy_data.tile4.nc ............MISSING file + Comparing RESTART/phy_data.tile5.nc ............MISSING file + Comparing RESTART/phy_data.tile6.nc ............MISSING file + Comparing RESTART/sfc_data.tile1.nc ............MISSING file + Comparing RESTART/sfc_data.tile2.nc ............MISSING file + Comparing RESTART/sfc_data.tile3.nc ............MISSING file + Comparing RESTART/sfc_data.tile4.nc ............MISSING file + Comparing RESTART/sfc_data.tile5.nc ............MISSING file + Comparing RESTART/sfc_data.tile6.nc ............MISSING file + Comparing RESTART/MOM.res.nc ............MISSING file + Comparing RESTART/iced.2016-10-04-00000.nc ............MISSING file + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc ............MISSING file +Test 001 cpld_control FAIL + +FAILED TESTS: +Test cpld_control 001 failed in check_result failed + +REGRESSION TEST FAILED +Tue Jan 12 22:02:41 UTC 2021 +Elapsed time: 00h:08m:35s. Have a nice day! From dfeb1f5095c1b6f4c6b830c24b41b59bc1be9153 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 13 Jan 2021 15:36:29 +0000 Subject: [PATCH 027/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 50ff7293f3..3f5f0ee5d6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Jan 12 21:54:07 UTC 2021 +Wed Jan 13 15:27:23 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_110066/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_53204/cpld_control_prod Checking test 001 cpld_control results .... Comparing phyf024.tile1.nc ............MISSING file Comparing phyf024.tile2.nc ............MISSING file @@ -58,5 +58,5 @@ FAILED TESTS: Test cpld_control 001 failed in check_result failed REGRESSION TEST FAILED -Tue Jan 12 22:02:41 UTC 2021 -Elapsed time: 00h:08m:35s. Have a nice day! +Wed Jan 13 15:36:29 UTC 2021 +Elapsed time: 00h:09m:07s. Have a nice day! From 77fa6850da4ed36024445bf9afb22ac87d0b20c7 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 13 Jan 2021 19:54:37 +0000 Subject: [PATCH 028/117] * Temporary test file for running on all machines * Fixed RT action in yml file for working test --- rt_auto.py | 12 ++++-------- rt_auto.yml | 8 ++++---- tests/rt.test | 2 ++ 3 files changed, 10 insertions(+), 12 deletions(-) create mode 100644 tests/rt.test diff --git a/rt_auto.py b/rt_auto.py index 13130fe0e5..4e2f8f8bc4 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -74,13 +74,11 @@ def process_pulls(pulls, repo): if label.name.split('-')[0].lower() == action_name.lower(): try: pr_workdir = clone_pr_repo(pr) - pa_ret = process_actions(action_callback, action_command, pr_workdir, pr) - if pa_ret == 0: - pr.remove_from_labels(label.name.split('-')[0]+"-"+label.name.split('-')[1]) - + process_actions(action_callback, action_command, pr_workdir, pr) except Exception as e: print("ERROR RUNNING RT {} with error: {}".format(action_name, e)) continue + pr.remove_from_labels(label.name.split('-')[0]+"-"+label.name.split('-')[1]) def clone_pr_repo(pr): branch = pr.head.ref @@ -94,7 +92,7 @@ def clone_pr_repo(pr): ["mkdir -p \""+repo_dir_str+"\"", machine.workdir], ["git clone -b "+branch+" "+git_url_w_login, repo_dir_str], ["git submodule update --init --recursive", repo_dir_str+"/"+repo_name], - ["module use modulefiles/{}.intel && module load fv3".format(machine.name), repo_dir_str+"/"+repo_name] + ["module use modulefiles/{}.intel && module load fv3".format(machine.name.lower()), repo_dir_str+"/"+repo_name] ] for command, in_cwd in create_repo_commands: @@ -159,10 +157,8 @@ def runInThread(callback_fnc, command, cwd_in): return thread # returns immediately after the thread starts - print("{} attempting command {}".format(machine.name.upper(), command)) + print("{} is running command {}".format(machine.name.upper(), command)) thread = create_threaded_call(callback_fnc, command, pr_workdir+'/tests') - # create_threaded_call(callback_fnc, [1,2,3,4]) - # print("Thread is {}".format(thread)) # START OF MAIN db_filename = 'rt_auto.yml' diff --git a/rt_auto.yml b/rt_auto.yml index 398a26b599..6f67a2d70b 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -38,10 +38,10 @@ base: 'develop' actions: - name: 'RT' - command: './rt.sh -n cpld_control' + command: './rt.sh -ek -l rt.test' callback_fnc: 'move_rt_logs' # - name: 'RT' # command: './rt.sh -ef' - - name: 'BL' - command: './rt.sh -cef' - callback_fnc: '' + # - name: 'BL' + # command: './rt.sh -cef' + # callback_fnc: '' diff --git a/tests/rt.test b/tests/rt.test new file mode 100644 index 0000000000..566d13341c --- /dev/null +++ b/tests/rt.test @@ -0,0 +1,2 @@ +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control | - wcoss_cray gaea.intel jet.intel | fv3 | From a7e63925a6de9adcdb83889ae33218a33fbdae68 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 13 Jan 2021 20:18:41 +0000 Subject: [PATCH 029/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 108 +++++++++++++-------------- 1 file changed, 53 insertions(+), 55 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 3f5f0ee5d6..acf9a62de6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,62 +1,60 @@ -Wed Jan 13 15:27:23 UTC 2021 +Wed Jan 13 20:00:56 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_53204/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_301850/cpld_control_prod Checking test 001 cpld_control results .... - Comparing phyf024.tile1.nc ............MISSING file - Comparing phyf024.tile2.nc ............MISSING file - Comparing phyf024.tile3.nc ............MISSING file - Comparing phyf024.tile4.nc ............MISSING file - Comparing phyf024.tile5.nc ............MISSING file - Comparing phyf024.tile6.nc ............MISSING file - Comparing dynf024.tile1.nc ............MISSING file - Comparing dynf024.tile2.nc ............MISSING file - Comparing dynf024.tile3.nc ............MISSING file - Comparing dynf024.tile4.nc ............MISSING file - Comparing dynf024.tile5.nc ............MISSING file - Comparing dynf024.tile6.nc ............MISSING file - Comparing RESTART/coupler.res ............MISSING file - Comparing RESTART/fv_core.res.nc ............MISSING file - Comparing RESTART/fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/phy_data.tile1.nc ............MISSING file - Comparing RESTART/phy_data.tile2.nc ............MISSING file - Comparing RESTART/phy_data.tile3.nc ............MISSING file - Comparing RESTART/phy_data.tile4.nc ............MISSING file - Comparing RESTART/phy_data.tile5.nc ............MISSING file - Comparing RESTART/phy_data.tile6.nc ............MISSING file - Comparing RESTART/sfc_data.tile1.nc ............MISSING file - Comparing RESTART/sfc_data.tile2.nc ............MISSING file - Comparing RESTART/sfc_data.tile3.nc ............MISSING file - Comparing RESTART/sfc_data.tile4.nc ............MISSING file - Comparing RESTART/sfc_data.tile5.nc ............MISSING file - Comparing RESTART/sfc_data.tile6.nc ............MISSING file - Comparing RESTART/MOM.res.nc ............MISSING file - Comparing RESTART/iced.2016-10-04-00000.nc ............MISSING file - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc ............MISSING file -Test 001 cpld_control FAIL + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 001 cpld_control PASS -FAILED TESTS: -Test cpld_control 001 failed in check_result failed -REGRESSION TEST FAILED -Wed Jan 13 15:36:29 UTC 2021 -Elapsed time: 00h:09m:07s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Wed Jan 13 20:18:41 UTC 2021 +Elapsed time: 00h:17m:46s. Have a nice day! From 62e077a28463b5e4fb1473d00fe2bc08d4de0f48 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 15 Jan 2021 15:18:43 -0500 Subject: [PATCH 030/117] Moving to classes, renaming old rt_auto --- rt_auto.py => rt_auto.py.old | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename rt_auto.py => rt_auto.py.old (100%) diff --git a/rt_auto.py b/rt_auto.py.old similarity index 100% rename from rt_auto.py rename to rt_auto.py.old From f28b763939a33acc02d2df3e6a450a260adf8a33 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 15 Jan 2021 20:24:38 +0000 Subject: [PATCH 031/117] new file using object oriented coding --- rt_auto.py | 308 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 308 insertions(+) create mode 100644 rt_auto.py diff --git a/rt_auto.py b/rt_auto.py new file mode 100644 index 0000000000..05c403c809 --- /dev/null +++ b/rt_auto.py @@ -0,0 +1,308 @@ +# HEADER +# Written by Brian Curtis +# Automation of RT tasks using github cli + +from github import Github as gh +import datetime +import pandas as pd +import itertools +import socket +import threading +import subprocess +import re +import sys +import yaml +import os + +class RTData: + + def __init__(self): + self.DB_FILENAME = 'rt_auto.yml' + self.data = self.read_yaml_data() + + def read_yaml_data(self): + stream = open(self.DB_FILENAME, 'r') + yaml_data = yaml.load(stream, Loader=yaml.SafeLoader) + stream.close() + return yaml_data + + def get_yaml_subset(self, keyin): + try: + yaml_subset = self.data[keyin] + except: + sys.exit(f'Unable to get yaml subset: {keyin}. Quitting') + df = pd.DataFrame.from_dict(yaml_subset) + return df + +class Machine: + + def __init__(self, RTData): + self.RTData = RTData + + def get_machine_info(self): + hostname = socket.gethostname() + machines = self.RTData.get_yaml_subset('machines') + regexmachines = machines['regexhostname'].values + for i, mach in enumerate(regexmachines): + if re.search(mach, hostname): + print(f'{hostname} is an approved machine') + mach_db_info = machines.iloc[i] + self.name = mach_db_info['name'] + self.regexhostname = mach_db_info['regexhostname'] + self.workdir = mach_db_info['workdir'] + self.baselinedir = mach_db_info['baselinedir'] + break + else: + continue + sys.exit(f'Hostname:{hostname} does not match approved list. Quitting') + +class Repos: + + def __init__(self, ghinterface, rtdata): + self.client = ghinterface.client + self.rtdata = rtdata + self.repo_info() + + class RepoInfo: + def __init__(self, name, address, base): + self.name = name + self.address = address + self.base = base + + def repo_info(self): + repo_data = self.rtdata.get_yaml_subset('repository').\ + values.tolist() + repo_list = [self.RepoInfo(name,address,base) + for name,address,base in repo_data] + print(f'type repo_list is {type(repo_list)}') + if not isinstance(repo_list, list): + repo_list = list(repo_list) + self.repo_list = repo_list + +class ActionInfo: + + def __init__(self, rtdata): + self.rtdata = rtdata + self.action_info() + + class ActionData: + def __init__(self, name, command, callback_fnc): + self.name = name + self.command = command + self.callback_fnc = callback_fnc + + def action_info(self): + action_data = self.rtdata.get_yaml_subset('actions').\ + values.tolist() + self.action_list = [self.ActionData(name,command,callback_fnc) + for name,command,callback_fnc in action_data] + + def is_action_name(self, action_name_cmp): + for match_action in self.action_list: + if re.match(action_name_cmp.lower(), match_action.name.lower()): + return True + else: + return False + + def get_action(self, action_name_cmp): + for match_action in self.action_list: + if re.match(action_name_cmp.lower(), match_action.name.lower()): + return match_action + else: + return None + +class GHInterface: + + def __init__(self, GHUSERNAME): + self.GHUSERNAME = GHUSERNAME + self.get_access_token() + self.client = gh(self.GHACCESSTOKEN) + + def get_access_token(self): + if os.path.exists('accesstoken.txt'): + f = open('accesstoken.txt', 'rb') + self.GHACCESSTOKEN = f.read() + f.close() + self.GHACCESSTOKEN = self.GHACCESSTOKEN.decode('utf-8').strip('\n') + else: + sys.exit('Please create a file "accesstoken.txt" that contains your\ + GitHub API Token.\nMake sure to set permissions so others can\ + not read it (400)') + +class ProcessRepo: + + def __init__(self, machine, ghinterface, actions, repo): + self.machine = machine + self.ghinterface = ghinterface + self.actions = actions + self.repo = repo + self.get_repo_object() + self.get_repo_preqs() + + def get_repo_object(self): + try: + self.ghrepo = self.ghinterface.client.get_repo(self.repo.address) + except Exception as e: + print(f'Failed to get repo object with error {e}') + self.ghrepo = None + + def get_repo_preqs(self): + self.preq_list = [] + try: + preqs = self.ghrepo.get_pulls(state='open', sort='created', base=self.repo.base) + except Exception as e: + print(f'Failed to get pull object with error {e}') + preqs = None + + for preq in preqs: + pullreq = PullReq(preq) + sys.exit() + pullreq.process() + # self.preq_list.append(self.PullReq(preq)) + +class PullReq(ProcessRepo): + + def __init__(self, preq): + super(PullReq, self).__init__() + print(f'MACHINE NAMEMEMEME {super().machine.name}') + self.preq = preq + self.branch = self.preq.head.ref + self.repo_name = self.preq.head.repo.name + self.git_url = self.preq.head.repo.html_url + self.repo_dir_str = super().machine.workdir+'/'+str(pr.id)+'/'+datetime.datetime.now().strftime('%Y%m%d%H%M%S') + self.get_labels() + + + + def get_labels(self): + self.prlabels = [] + pr_labels = super().preq.get_labels() + for pr_label in pr_labels: + split_pr_label = pr_label.name.split('-') + self.prlabels.append(PRLabel(split_pr_label[0], split_pr_label[1])) + + def clone_pr_repo(self): + + git_url_w_login = self.git_url.split('//') + git_url_w_login = git_url_w_login[0]+"//"+super().ghinterface.GHUSERNAME+":"+super().ghinterface.GHACCESSTOKEN+"@"+git_url_w_login[1] + + create_repo_commands = [ + ['mkdir -p "'+self.repo_dir_str+'"', super().machine.workdir], + ['git clone -b '+self.branch+' '+git_url_w_login, self.repo_dir_str], + ['git submodule update --init --recursive', self.repo_dir_str+'/'+self.repo_name], + ['module use modulefiles/{}.intel && module load fv3'.format(super().machine.name.lower()), self.repo_dir_str+'/'+self.repo_name] + ] + + for command, in_cwd in create_repo_commands: + print(f'Attempting to run: {command}'.format(command)) + try: + retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) + retcode.wait() + if retcode.returncode==1: + print('Error Occured:') + print(f'Stdout: {retcode.stdout}') + print(f'Stderr: {retcode.stderr}') + sys.exit() + except OSError as e: + print(f'Execution failed: {e}') + sys.exit() + + self.clone_location = self.repo_dir_str+"/"+self.repo_name + + def process(self): + for prlabel in self.prlabels: + if prlabel.is_approved(): + self.approved_action = self.actions.get_action(prlabel.command) + try: + self.clone_pr_repo() + except Exception as e: + sys.exit(f'Error cloning repo: {self.git_url}') + try: + self.process_actions(self.approved_action.callback_fnc, self.approved_action.command, self.clone_location) + except Exception as e: + print(f'ERROR RUNNING RT {self.approved_action.command} with error: {e}') + continue + self.preq.remove_from_labels(f'{prlabel.command}-{super().machine.name}') + + def move_rt_logs(self): + rt_log = 'tests/RegressionTests_'+super().machine.name+'.intel.log' + filepath = self.clone_location+'/'+rt_log + print(f'File path issssss {filepath}') + if os.path.exists(filepath): + print(f'Branch used is: {self.branch}') + + move_rt_commands = [ + ['git add '+rt_log, self.clone_location], + ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', self.clone_location], + ['git push origin '+branch, self.clone_location] + ] + for command, in_cwd in move_rt_commands: + print(f'Attempting to run: {command}') + try: + retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) + retcode.wait() + if retcode.returncode==1: + print('Error Occured:') + print(f'Stdout: {retcode.stdout}') + print(f'Stderr: {retcode.stderr}') + sys.exit() + except OSError as e: + print(f'Execution failed: {e}') + sys.exit() + else: + print('ERROR: Could not find RT log') + sys.exit() + + def process_actions(callback_fnc, command): + + def create_threaded_call(callback_fnc, command, cwd_in): + + def runInThread(callback_fnc, command, cwd_in): + proc = subprocess.Popen(command, shell=True, cwd=cwd_in) + proc.wait() + globals()[callback_fnc](self) + return + + thread = threading.Thread(target=runInThread, + args=(callback_fnc, command, cwd_in)) + thread.daemon=True + thread.start() + + return thread # returns immediately after the thread starts + + print(f'{machine.name.upper()} is running command {command}') + thread = create_threaded_call(callback_fnc, command, self.clone_location+'/tests') + +class PRLabel(PullReq): + def __init__(self, command, machine): + self.lblcommand = command + self.lblmachine = machine + + def is_approved(self): + if re.match(machine.lower(), super().machine.name.lower()): + if super().actions.is_action_name(command): + print(f'Approved label "{command}-{machine}"') + return True + else: + print(f'Label not approved. Command: {command} not on approved list.') + return False + else: + print(f'Label not approved. Machine: {machine} does not match.') + return False + +def main(): + GHUSERNAME = 'BrianCurtis-NOAA' + + rtdata = RTData() + machine = Machine(rtdata) + actions = ActionInfo(rtdata) + # repo_list = get_repo_info(rtdata) + ghinterface = GHInterface(GHUSERNAME) + repos = Repos(ghinterface, rtdata) + print(f'type of repos is {type(repos)}') + # repo_objs = repos.get_repo_objects() + for single_repo in repos.repo_list: + process = ProcessRepo(machine, ghinterface, actions, single_repo) + +if __name__ == '__main__': + main() From 3c5d25d37a8b2d3514e2aec0749051bb5cf0191b Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 21 Jan 2021 20:25:53 +0000 Subject: [PATCH 032/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index acf9a62de6..33f9265e22 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Jan 13 20:00:56 UTC 2021 +Thu Jan 21 20:12:08 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_301850/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_274190/cpld_control_prod Checking test 001 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -56,5 +56,5 @@ Test 001 cpld_control PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 13 20:18:41 UTC 2021 -Elapsed time: 00h:17m:46s. Have a nice day! +Thu Jan 21 20:25:52 UTC 2021 +Elapsed time: 00h:13m:45s. Have a nice day! From baea07d1c70ecbb590d16e5cae9b59c539b4c289 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 21 Jan 2021 21:20:54 +0000 Subject: [PATCH 033/117] Moved towards OO style, tested on hera successfully --- rt_auto.py | 339 +++++++++++++++++++++++++--------------------------- rt_auto.yml | 4 +- 2 files changed, 162 insertions(+), 181 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 05c403c809..791188b0c1 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -38,6 +38,7 @@ class Machine: def __init__(self, RTData): self.RTData = RTData + self.get_machine_info() def get_machine_info(self): hostname = socket.gethostname() @@ -51,65 +52,29 @@ def get_machine_info(self): self.regexhostname = mach_db_info['regexhostname'] self.workdir = mach_db_info['workdir'] self.baselinedir = mach_db_info['baselinedir'] - break + return else: continue sys.exit(f'Hostname:{hostname} does not match approved list. Quitting') -class Repos: - - def __init__(self, ghinterface, rtdata): - self.client = ghinterface.client - self.rtdata = rtdata - self.repo_info() - - class RepoInfo: - def __init__(self, name, address, base): - self.name = name - self.address = address - self.base = base - - def repo_info(self): - repo_data = self.rtdata.get_yaml_subset('repository').\ - values.tolist() - repo_list = [self.RepoInfo(name,address,base) - for name,address,base in repo_data] - print(f'type repo_list is {type(repo_list)}') - if not isinstance(repo_list, list): - repo_list = list(repo_list) - self.repo_list = repo_list - -class ActionInfo: - - def __init__(self, rtdata): - self.rtdata = rtdata - self.action_info() - - class ActionData: - def __init__(self, name, command, callback_fnc): - self.name = name - self.command = command - self.callback_fnc = callback_fnc - - def action_info(self): - action_data = self.rtdata.get_yaml_subset('actions').\ - values.tolist() - self.action_list = [self.ActionData(name,command,callback_fnc) - for name,command,callback_fnc in action_data] - - def is_action_name(self, action_name_cmp): - for match_action in self.action_list: - if re.match(action_name_cmp.lower(), match_action.name.lower()): - return True - else: - return False +class Function: - def get_action(self, action_name_cmp): - for match_action in self.action_list: - if re.match(action_name_cmp.lower(), match_action.name.lower()): - return match_action - else: - return None + def __init__(self, name, command, callback): + self.name = name + self.command = command + self.callback = callback + + def verify_name(self, comparable): + if re.match(self.name.lower(), comparable.lower()): + return True + else: + return False + + def verify_command(self, comparable): + if re.match(self.command.lower(), comparable.lower()): + return True + else: + return False class GHInterface: @@ -125,76 +90,147 @@ def get_access_token(self): f.close() self.GHACCESSTOKEN = self.GHACCESSTOKEN.decode('utf-8').strip('\n') else: - sys.exit('Please create a file "accesstoken.txt" that contains your\ - GitHub API Token.\nMake sure to set permissions so others can\ - not read it (400)') + sys.exit('Please create a file "accesstoken.txt" that contains your'\ + ' GitHub API Token.\nMake sure to set permissions so others can'\ + ' not read it (400)') -class ProcessRepo: +# REPO STUFF +class Repo: - def __init__(self, machine, ghinterface, actions, repo): + def __init__(self, name, address, base, machine, ghinterface): + self.name = name + self.address = address + self.base = base self.machine = machine self.ghinterface = ghinterface - self.actions = actions - self.repo = repo - self.get_repo_object() + self.get_GHrepo_object() self.get_repo_preqs() - def get_repo_object(self): + def get_GHrepo_object(self): try: - self.ghrepo = self.ghinterface.client.get_repo(self.repo.address) + self.ghrepo = self.ghinterface.client.get_repo(self.address) except Exception as e: print(f'Failed to get repo object with error {e}') self.ghrepo = None def get_repo_preqs(self): - self.preq_list = [] + self.pullreq_list = [] try: - preqs = self.ghrepo.get_pulls(state='open', sort='created', base=self.repo.base) + preqs = self.ghrepo.get_pulls(state='open', sort='created', base=self.base) except Exception as e: print(f'Failed to get pull object with error {e}') preqs = None for preq in preqs: - pullreq = PullReq(preq) - sys.exit() - pullreq.process() - # self.preq_list.append(self.PullReq(preq)) + self.pullreq_list.append(PullReq(self, preq, self.machine)) -class PullReq(ProcessRepo): +class PullReq: - def __init__(self, preq): - super(PullReq, self).__init__() - print(f'MACHINE NAMEMEMEME {super().machine.name}') + def __init__(self, Repo, preq, machine): self.preq = preq + self.repo = Repo + self.machine = machine + self.branch = self.preq.head.ref self.repo_name = self.preq.head.repo.name self.git_url = self.preq.head.repo.html_url - self.repo_dir_str = super().machine.workdir+'/'+str(pr.id)+'/'+datetime.datetime.now().strftime('%Y%m%d%H%M%S') - self.get_labels() - - + self.repo_dir_str = self.machine.workdir+'/'+str(preq.id)+'/'+datetime.datetime.now().strftime('%Y%m%d%H%M%S') + self.get_pr_labels() - def get_labels(self): - self.prlabels = [] - pr_labels = super().preq.get_labels() + def get_pr_labels(self): + self.labels = [] + pr_labels = self.preq.get_labels() for pr_label in pr_labels: split_pr_label = pr_label.name.split('-') - self.prlabels.append(PRLabel(split_pr_label[0], split_pr_label[1])) + self.labels.append(PRLabel(split_pr_label[0], split_pr_label[1])) - def clone_pr_repo(self): + def add_clone_dir(self, clone_dir): + self.clone_dir = clone_dir - git_url_w_login = self.git_url.split('//') - git_url_w_login = git_url_w_login[0]+"//"+super().ghinterface.GHUSERNAME+":"+super().ghinterface.GHACCESSTOKEN+"@"+git_url_w_login[1] +class PRLabel: - create_repo_commands = [ - ['mkdir -p "'+self.repo_dir_str+'"', super().machine.workdir], - ['git clone -b '+self.branch+' '+git_url_w_login, self.repo_dir_str], - ['git submodule update --init --recursive', self.repo_dir_str+'/'+self.repo_name], - ['module use modulefiles/{}.intel && module load fv3'.format(super().machine.name.lower()), self.repo_dir_str+'/'+self.repo_name] - ] + def __init__(self, name, machine): + self.name = name + self.machine = machine + self.function = None + + def add_function(self, function): + self.function = function + + def is_approved(self, machine, functions): + if re.match(self.machine.lower(), machine.name.lower()): + for function in functions: + if function.verify_name(self.name): + print(f'Approved label "{self.name}-{self.machine}"') + self.add_function(function) + return True + else: + print(f'Label not approved. Name: {self.name} not on approved list.') + return False + else: + print(f'Label not approved. Machine: {self.machine} not on approved list.') + return False + +def get_approved_functions(rtdata): + function_data = rtdata.get_yaml_subset('functions').\ + values.tolist() + function_list = [Function(name,command,callback_fnc) + for name,command,callback_fnc in function_data] + return function_list + +def clone_pr_repo(pullreq, ghinterface, machine): + + git_url_w_login = pullreq.git_url.split('//') + git_url_w_login = git_url_w_login[0]+"//"+ghinterface.GHUSERNAME+":"+ghinterface.GHACCESSTOKEN+"@"+git_url_w_login[1] + + create_repo_commands = [ + ['mkdir -p "'+pullreq.repo_dir_str+'"', machine.workdir], + ['git clone -b '+pullreq.branch+' '+git_url_w_login, pullreq.repo_dir_str], + ['git submodule update --init --recursive', pullreq.repo_dir_str+'/'+pullreq.repo_name], + ['module use modulefiles/{}.intel && module load fv3'.format(machine.name.lower()), pullreq.repo_dir_str+'/'+pullreq.repo_name] + ] + + for command, in_cwd in create_repo_commands: + print(f'Attempting to run: {command}'.format(command)) + try: + retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) + retcode.wait() + if retcode.returncode==1: + print('Error Occured:') + print(f'Stdout: {retcode.stdout}') + print(f'Stderr: {retcode.stderr}') + sys.exit() + except OSError as e: + print(f'Execution failed: {e}') + sys.exit() + + pullreq.add_clone_dir(pullreq.repo_dir_str+"/"+pullreq.repo_name) - for command, in_cwd in create_repo_commands: - print(f'Attempting to run: {command}'.format(command)) +def process_pr(pullreq, ghinterface, machine, functions): + for prlabel in pullreq.labels: + if prlabel.is_approved(machine, functions): + try: + clone_pr_repo(pullreq, ghinterface, machine) + except Exception as e: + sys.exit(f'Error cloning repo: {pullreq.git_url}') + try: + send_to_thread(prlabel.function, pullreq) + except Exception as e: + print(f'ERROR RUNNING RT {prlabel.function.command} with error: {e}') + continue + # pullreq.preq.remove_from_labels(f'{prlabel.name}-{prlabel.machine}') + +def move_rt_logs(PullReq): + filepath = PullReq.clone_dir+'/'+rt_log + if os.path.exists(filepath): + + move_rt_commands = [ + ['git add '+rt_log, PullReq.clone_dir], + ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', PullReq.clone_dir], + ['git push origin '+PullReq.branch, PullReq.clone_dir] + ] + for command, in_cwd in move_rt_commands: + print(f'Attempting to run: {command}') try: retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) retcode.wait() @@ -206,103 +242,48 @@ def clone_pr_repo(self): except OSError as e: print(f'Execution failed: {e}') sys.exit() + else: + print('ERROR: Could not find RT log') + sys.exit() - self.clone_location = self.repo_dir_str+"/"+self.repo_name +def send_to_thread(Function, PullReq): - def process(self): - for prlabel in self.prlabels: - if prlabel.is_approved(): - self.approved_action = self.actions.get_action(prlabel.command) - try: - self.clone_pr_repo() - except Exception as e: - sys.exit(f'Error cloning repo: {self.git_url}') - try: - self.process_actions(self.approved_action.callback_fnc, self.approved_action.command, self.clone_location) - except Exception as e: - print(f'ERROR RUNNING RT {self.approved_action.command} with error: {e}') - continue - self.preq.remove_from_labels(f'{prlabel.command}-{super().machine.name}') - - def move_rt_logs(self): - rt_log = 'tests/RegressionTests_'+super().machine.name+'.intel.log' - filepath = self.clone_location+'/'+rt_log - print(f'File path issssss {filepath}') - if os.path.exists(filepath): - print(f'Branch used is: {self.branch}') - - move_rt_commands = [ - ['git add '+rt_log, self.clone_location], - ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', self.clone_location], - ['git push origin '+branch, self.clone_location] - ] - for command, in_cwd in move_rt_commands: - print(f'Attempting to run: {command}') - try: - retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) - retcode.wait() - if retcode.returncode==1: - print('Error Occured:') - print(f'Stdout: {retcode.stdout}') - print(f'Stderr: {retcode.stderr}') - sys.exit() - except OSError as e: - print(f'Execution failed: {e}') - sys.exit() - else: - print('ERROR: Could not find RT log') - sys.exit() + def create_threaded_call(Function, PullReq): - def process_actions(callback_fnc, command): + def runInThread(incallback, incommand, cwd_in): + print(f'cwd_in is:{cwd_in}') + proc = subprocess.Popen(incommand, shell=True, cwd=cwd_in) + proc.wait() + globals()[incallback](PullReq) + return - def create_threaded_call(callback_fnc, command, cwd_in): - - def runInThread(callback_fnc, command, cwd_in): - proc = subprocess.Popen(command, shell=True, cwd=cwd_in) - proc.wait() - globals()[callback_fnc](self) - return + thread = threading.Thread(target=runInThread, + args=(Function.callback, Function.command, PullReq.clone_dir)) + # thread.daemon=True + thread.start() - thread = threading.Thread(target=runInThread, - args=(callback_fnc, command, cwd_in)) - thread.daemon=True - thread.start() + return thread # returns immediately after the thread starts + thread = create_threaded_call(Function, PullReq) - return thread # returns immediately after the thread starts - - print(f'{machine.name.upper()} is running command {command}') - thread = create_threaded_call(callback_fnc, command, self.clone_location+'/tests') - -class PRLabel(PullReq): - def __init__(self, command, machine): - self.lblcommand = command - self.lblmachine = machine - - def is_approved(self): - if re.match(machine.lower(), super().machine.name.lower()): - if super().actions.is_action_name(command): - print(f'Approved label "{command}-{machine}"') - return True - else: - print(f'Label not approved. Command: {command} not on approved list.') - return False - else: - print(f'Label not approved. Machine: {machine} does not match.') - return False +def get_approved_repos(rtdata, machine, ghinterface): + repo_data = rtdata.get_yaml_subset('repository').values.tolist() + repo_list = [Repo(name, address, base, machine, ghinterface) + for name, address, base in repo_data] + if not isinstance(repo_list, list): + repo_list = list(repo_list) + return repo_list def main(): GHUSERNAME = 'BrianCurtis-NOAA' - + ghinterface = GHInterface(GHUSERNAME) rtdata = RTData() machine = Machine(rtdata) - actions = ActionInfo(rtdata) - # repo_list = get_repo_info(rtdata) - ghinterface = GHInterface(GHUSERNAME) - repos = Repos(ghinterface, rtdata) - print(f'type of repos is {type(repos)}') - # repo_objs = repos.get_repo_objects() - for single_repo in repos.repo_list: - process = ProcessRepo(machine, ghinterface, actions, single_repo) + functions = get_approved_functions(rtdata) + repo_list = get_approved_repos(rtdata, machine, ghinterface) + for single_repo in repo_list: + for single_pr in single_repo.pullreq_list: + process_pr(single_pr, ghinterface, machine, functions) + # process = Process(machine, ghinterface, actions, single_repo) if __name__ == '__main__': main() diff --git a/rt_auto.yml b/rt_auto.yml index 6f67a2d70b..10cbe1a7d4 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -36,9 +36,9 @@ - name: 'ufs-weather-model' address: 'BrianCurtis-NOAA/ufs-weather-model' base: 'develop' - actions: + functions: - name: 'RT' - command: './rt.sh -ek -l rt.test' + command: './tests/rt.sh -ek -l rt.test' callback_fnc: 'move_rt_logs' # - name: 'RT' # command: './rt.sh -ef' From a24d5b58bc41efdf7e70c8b19c68ed7c8965672c Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 21 Jan 2021 21:23:32 +0000 Subject: [PATCH 034/117] Need to remove the label once done processing it --- rt_auto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rt_auto.py b/rt_auto.py index 791188b0c1..1147682939 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -218,7 +218,7 @@ def process_pr(pullreq, ghinterface, machine, functions): except Exception as e: print(f'ERROR RUNNING RT {prlabel.function.command} with error: {e}') continue - # pullreq.preq.remove_from_labels(f'{prlabel.name}-{prlabel.machine}') + pullreq.preq.remove_from_labels(f'{prlabel.name}-{prlabel.machine}') def move_rt_logs(PullReq): filepath = PullReq.clone_dir+'/'+rt_log From 06a4210274a9ff9c1fdd615ff13266ded9672ae4 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 21 Jan 2021 22:13:30 +0000 Subject: [PATCH 035/117] Fixed all object names to be explicit --- rt_auto.py | 121 ++++++++++++++++++++++++++--------------------------- 1 file changed, 59 insertions(+), 62 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 1147682939..1caeae105e 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -5,7 +5,6 @@ from github import Github as gh import datetime import pandas as pd -import itertools import socket import threading import subprocess @@ -36,13 +35,13 @@ def get_yaml_subset(self, keyin): class Machine: - def __init__(self, RTData): - self.RTData = RTData + def __init__(self, rtdata_obj): + self.rtdata_obj = rtdata_obj self.get_machine_info() def get_machine_info(self): hostname = socket.gethostname() - machines = self.RTData.get_yaml_subset('machines') + machines = self.rtdata_obj.get_yaml_subset('machines') regexmachines = machines['regexhostname'].values for i, mach in enumerate(regexmachines): if re.search(mach, hostname): @@ -97,18 +96,18 @@ def get_access_token(self): # REPO STUFF class Repo: - def __init__(self, name, address, base, machine, ghinterface): + def __init__(self, name, address, base, machine_obj, ghinterface_obj): self.name = name self.address = address self.base = base - self.machine = machine - self.ghinterface = ghinterface + self.machine_obj = machine_obj + self.ghinterface_obj = ghinterface_obj self.get_GHrepo_object() self.get_repo_preqs() def get_GHrepo_object(self): try: - self.ghrepo = self.ghinterface.client.get_repo(self.address) + self.ghrepo = self.ghinterface_obj.client.get_repo(self.address) except Exception as e: print(f'Failed to get repo object with error {e}') self.ghrepo = None @@ -122,24 +121,24 @@ def get_repo_preqs(self): preqs = None for preq in preqs: - self.pullreq_list.append(PullReq(self, preq, self.machine)) + self.pullreq_list.append(PullReq(self, preq, self.machine_obj)) class PullReq: - def __init__(self, Repo, preq, machine): - self.preq = preq - self.repo = Repo - self.machine = machine + def __init__(self, repo_obj, preq_obj, machine_obj): + self.preq_obj = preq_obj + self.repo_obj = repo_obj + self.machine_obj = machine_obj - self.branch = self.preq.head.ref - self.repo_name = self.preq.head.repo.name - self.git_url = self.preq.head.repo.html_url - self.repo_dir_str = self.machine.workdir+'/'+str(preq.id)+'/'+datetime.datetime.now().strftime('%Y%m%d%H%M%S') + self.branch = self.preq_obj.head.ref + self.repo_name = self.preq_obj.head.repo.name + self.git_url = self.preq_obj.head.repo.html_url + self.repo_dir_str = self.machine_obj.workdir+'/'+str(preq_obj.id)+'/'+datetime.datetime.now().strftime('%Y%m%d%H%M%S') self.get_pr_labels() def get_pr_labels(self): self.labels = [] - pr_labels = self.preq.get_labels() + pr_labels = self.preq_obj.get_labels() for pr_label in pr_labels: split_pr_label = pr_label.name.split('-') self.labels.append(PRLabel(split_pr_label[0], split_pr_label[1])) @@ -152,17 +151,17 @@ class PRLabel: def __init__(self, name, machine): self.name = name self.machine = machine - self.function = None + self.function_obj = None - def add_function(self, function): - self.function = function + def add_function(self, function_obj): + self.function_obj = function_obj - def is_approved(self, machine, functions): + def is_approved(self, machine_obj, functions): if re.match(self.machine.lower(), machine.name.lower()): - for function in functions: - if function.verify_name(self.name): + for function_obj in functions: + if function_obj.verify_name(self.name): print(f'Approved label "{self.name}-{self.machine}"') - self.add_function(function) + self.add_function(function_obj) return True else: print(f'Label not approved. Name: {self.name} not on approved list.') @@ -171,23 +170,23 @@ def is_approved(self, machine, functions): print(f'Label not approved. Machine: {self.machine} not on approved list.') return False -def get_approved_functions(rtdata): - function_data = rtdata.get_yaml_subset('functions').\ +def get_approved_functions(rtdata_obj): + function_data = rtdata_obj.get_yaml_subset('functions').\ values.tolist() function_list = [Function(name,command,callback_fnc) for name,command,callback_fnc in function_data] return function_list -def clone_pr_repo(pullreq, ghinterface, machine): +def clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj): - git_url_w_login = pullreq.git_url.split('//') - git_url_w_login = git_url_w_login[0]+"//"+ghinterface.GHUSERNAME+":"+ghinterface.GHACCESSTOKEN+"@"+git_url_w_login[1] + git_url_w_login = pullreq_obj.git_url.split('//') + git_url_w_login = git_url_w_login[0]+"//"+ghinterface_obj.GHUSERNAME+":"+ghinterface_obj.GHACCESSTOKEN+"@"+git_url_w_login[1] create_repo_commands = [ - ['mkdir -p "'+pullreq.repo_dir_str+'"', machine.workdir], - ['git clone -b '+pullreq.branch+' '+git_url_w_login, pullreq.repo_dir_str], - ['git submodule update --init --recursive', pullreq.repo_dir_str+'/'+pullreq.repo_name], - ['module use modulefiles/{}.intel && module load fv3'.format(machine.name.lower()), pullreq.repo_dir_str+'/'+pullreq.repo_name] + ['mkdir -p "'+pullreq_obj.repo_dir_str+'"', machine_obj.workdir], + ['git clone -b '+pullreq_obj.branch+' '+git_url_w_login, pullreq_obj.repo_dir_str], + ['git submodule update --init --recursive', pullreq_obj.repo_dir_str+'/'+pullreq_obj.repo_name], + ['module use modulefiles/{}.intel && module load fv3'.format(machine_obj.name.lower()), pullreq_obj.repo_dir_str+'/'+pullreq_obj.repo_name] ] for command, in_cwd in create_repo_commands: @@ -204,30 +203,30 @@ def clone_pr_repo(pullreq, ghinterface, machine): print(f'Execution failed: {e}') sys.exit() - pullreq.add_clone_dir(pullreq.repo_dir_str+"/"+pullreq.repo_name) + pullreq_obj.add_clone_dir(pullreq_obj.repo_dir_str+"/"+pullreq_obj.repo_name) -def process_pr(pullreq, ghinterface, machine, functions): - for prlabel in pullreq.labels: - if prlabel.is_approved(machine, functions): +def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): + for prlabel in pullreq_obj.labels: + if prlabel.is_approved(machine_obj, functions): try: - clone_pr_repo(pullreq, ghinterface, machine) + clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj) except Exception as e: - sys.exit(f'Error cloning repo: {pullreq.git_url}') + sys.exit(f'Error cloning repo: {pullreq_obj.git_url}') try: - send_to_thread(prlabel.function, pullreq) + send_to_thread(prlabel.function, pullreq_obj) except Exception as e: print(f'ERROR RUNNING RT {prlabel.function.command} with error: {e}') continue - pullreq.preq.remove_from_labels(f'{prlabel.name}-{prlabel.machine}') + pullreq_obj.preq.remove_from_labels(f'{prlabel.name}-{prlabel.machine}') -def move_rt_logs(PullReq): - filepath = PullReq.clone_dir+'/'+rt_log +def move_rt_logs(pullreq_obj): + filepath = pullreq_obj.clone_dir+'/'+rt_log if os.path.exists(filepath): move_rt_commands = [ - ['git add '+rt_log, PullReq.clone_dir], - ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', PullReq.clone_dir], - ['git push origin '+PullReq.branch, PullReq.clone_dir] + ['git add '+rt_log, pullreq_obj.clone_dir], + ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pullreq_obj.clone_dir], + ['git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir] ] for command, in_cwd in move_rt_commands: print(f'Attempting to run: {command}') @@ -246,9 +245,9 @@ def move_rt_logs(PullReq): print('ERROR: Could not find RT log') sys.exit() -def send_to_thread(Function, PullReq): +def send_to_thread(function_obj, pullreq_obj): - def create_threaded_call(Function, PullReq): + def create_threaded_call(function_obj, pullreq_obj): def runInThread(incallback, incommand, cwd_in): print(f'cwd_in is:{cwd_in}') @@ -258,16 +257,15 @@ def runInThread(incallback, incommand, cwd_in): return thread = threading.Thread(target=runInThread, - args=(Function.callback, Function.command, PullReq.clone_dir)) - # thread.daemon=True + args=(function_obj.callback, function_obj.command, pullreq_obj.clone_dir)) thread.start() return thread # returns immediately after the thread starts - thread = create_threaded_call(Function, PullReq) + thread = create_threaded_call(function_obj, pullreq_obj) -def get_approved_repos(rtdata, machine, ghinterface): - repo_data = rtdata.get_yaml_subset('repository').values.tolist() - repo_list = [Repo(name, address, base, machine, ghinterface) +def get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj): + repo_data = rtdata_obj.get_yaml_subset('repository').values.tolist() + repo_list = [Repo(name, address, base, machine_obj, ghinterface_obj) for name, address, base in repo_data] if not isinstance(repo_list, list): repo_list = list(repo_list) @@ -275,15 +273,14 @@ def get_approved_repos(rtdata, machine, ghinterface): def main(): GHUSERNAME = 'BrianCurtis-NOAA' - ghinterface = GHInterface(GHUSERNAME) - rtdata = RTData() - machine = Machine(rtdata) - functions = get_approved_functions(rtdata) - repo_list = get_approved_repos(rtdata, machine, ghinterface) + ghinterface_obj = GHInterface(GHUSERNAME) + rtdata_obj= RTData() + machine_obj = Machine(rtdata_obj) + functions_obj = get_approved_functions(rtdata_obj) + repo_list = get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj) for single_repo in repo_list: for single_pr in single_repo.pullreq_list: - process_pr(single_pr, ghinterface, machine, functions) - # process = Process(machine, ghinterface, actions, single_repo) + process_pr(single_pr, ghinterface_obj, machine_obj, functions_obj) if __name__ == '__main__': main() From 26dff30528bae692e4c21847b258f1de5274b8fe Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 22 Jan 2021 18:05:37 +0000 Subject: [PATCH 036/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 5308 +------------------------- 1 file changed, 9 insertions(+), 5299 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index c5c1698940..06b69b40ff 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,5051 +1,10 @@ -Tue Jan 19 15:52:05 UTC 2021 +Fri Jan 22 17:49:50 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_prod -Checking test 046 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gocart_clm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_control_prod -Checking test 069 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_prod -Checking test 070 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restartfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_2threads_prod -Checking test 073 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_decomp_prod -Checking test 074 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_ca_prod -Checking test 076 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_control_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_restart_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_controlfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_restartfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_control_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_restart_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_controlfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_restartfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmark_prod -Checking test 085 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_restart_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_restart_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmark_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_244971/cpld_control_prod +Checking test 001 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5058,177 +17,6 @@ Checking test 092 cpld_bmarkfrac_wave results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_bmarkfrac_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_debug_prod -Checking test 094 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 094 cpld_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_debugfrac_prod -Checking test 095 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5262,89 +50,11 @@ Checking test 095 cpld_debugfrac results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debugfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_control_cfsr -Checking test 096 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_control_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_restart_cfsr -Checking test 097 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_restart_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_control_gefs -Checking test 098 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_control_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_bulk_cfsr -Checking test 099 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_bulk_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_bulk_gefs -Checking test 100 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_mx025_cfsr -Checking test 101 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_mx025_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_mx025_gefs -Checking test 102 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_debug_cfsr -Checking test 103 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 103 datm_debug_cfsr PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 001 cpld_control PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 19 16:55:03 UTC 2021 -Elapsed time: 01h:02m:59s. Have a nice day! +Fri Jan 22 18:05:36 UTC 2021 +Elapsed time: 00h:15m:46s. Have a nice day! From 5b9ac13300eaefa94782201a0d6923be99da4268 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 22 Jan 2021 18:12:52 +0000 Subject: [PATCH 037/117] Added checks on RT completing before deleting the label on the GH repo --- rt_auto.py | 78 ++++++++++++++++++++++++++++++++++++++--------------- rt_auto.sh | 1 + rt_auto.yml | 3 +++ 3 files changed, 60 insertions(+), 22 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 1caeae105e..674e162c90 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -38,6 +38,7 @@ class Machine: def __init__(self, rtdata_obj): self.rtdata_obj = rtdata_obj self.get_machine_info() + self.machineid = os.environ.get('MACHINE_ID') def get_machine_info(self): hostname = socket.gethostname() @@ -141,7 +142,10 @@ def get_pr_labels(self): pr_labels = self.preq_obj.get_labels() for pr_label in pr_labels: split_pr_label = pr_label.name.split('-') - self.labels.append(PRLabel(split_pr_label[0], split_pr_label[1])) + if len(split_pr_label) == 3 and split_pr_label[0] == "Auto": + self.labels.append(PRLabel(split_pr_label[1], split_pr_label[2])) + else: + continue def add_clone_dir(self, clone_dir): self.clone_dir = clone_dir @@ -157,7 +161,7 @@ def add_function(self, function_obj): self.function_obj = function_obj def is_approved(self, machine_obj, functions): - if re.match(self.machine.lower(), machine.name.lower()): + if re.match(self.machine.lower(), machine_obj.name.lower()): for function_obj in functions: if function_obj.verify_name(self.name): print(f'Approved label "{self.name}-{self.machine}"') @@ -213,13 +217,17 @@ def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): except Exception as e: sys.exit(f'Error cloning repo: {pullreq_obj.git_url}') try: - send_to_thread(prlabel.function, pullreq_obj) + goodexit = runInThread(prlabel.function_obj, pullreq_obj) + # thread, badexit = send_to_thread(prlabel.function_obj, pullreq_obj) except Exception as e: - print(f'ERROR RUNNING RT {prlabel.function.command} with error: {e}') + print(f'ERROR RUNNING RT {prlabel.function_obj.command} with error: {e}') continue - pullreq_obj.preq.remove_from_labels(f'{prlabel.name}-{prlabel.machine}') + else: + if goodexit == True: + pullreq_obj.preq_obj.remove_from_labels(f'Auto-{prlabel.name}-{prlabel.machine}') def move_rt_logs(pullreq_obj): + rt_log = 'tests/RegressionTests_'+pullreq_obj.machine_obj.machineid+'.log' filepath = pullreq_obj.clone_dir+'/'+rt_log if os.path.exists(filepath): @@ -245,23 +253,46 @@ def move_rt_logs(pullreq_obj): print('ERROR: Could not find RT log') sys.exit() -def send_to_thread(function_obj, pullreq_obj): - - def create_threaded_call(function_obj, pullreq_obj): - - def runInThread(incallback, incommand, cwd_in): - print(f'cwd_in is:{cwd_in}') - proc = subprocess.Popen(incommand, shell=True, cwd=cwd_in) - proc.wait() - globals()[incallback](PullReq) - return - - thread = threading.Thread(target=runInThread, - args=(function_obj.callback, function_obj.command, pullreq_obj.clone_dir)) - thread.start() - - return thread # returns immediately after the thread starts - thread = create_threaded_call(function_obj, pullreq_obj) +# def send_to_thread(function_obj, pullreq_obj): +# badexit = False +# def create_threaded_call(function_obj, pullreq_obj, badexit): +# +# def runInThread(incallback, incommand, cwd_in, badexit): +# print(f'cwd_in is:{cwd_in}') +# proc = subprocess.Popen(incommand, shell=True, cwd=cwd_in) +# proc.wait() +# proc.poll() +# if proc.returncode == 0: +# print(f'Process successful, running callback function') +# globals()[incallback](pullreq_obj) +# else: +# print(f'badexit is {badexit}') +# print(f'Process failed, skipping callback function') +# badexit = True +# print(f'new badexit is {badexit}') +# return +# +# thread = threading.Thread(target=runInThread, +# args=(function_obj.callback, function_obj.command, pullreq_obj.clone_dir, badexit)) +# thread.start() +# print(f'ouside badexit is {badexit}') +# return thread, badexit # returns immediately after the thread starts +# thread, exit = create_threaded_call(function_obj, pullreq_obj, badexit) +# return thread, exit + +def runInThread(function_obj, pullreq_obj): + goodexit = None + proc = subprocess.Popen(function_obj.command, shell=True, cwd=pullreq_obj.clone_dir) + proc.wait() + proc.poll() + if proc.returncode == 0: + print(f'Process successful, running callback function') + globals()[function_obj.callback](pullreq_obj) + goodexit = True + else: + print(f'Process failed, skipping callback function') + goodexit = False + return goodexit def get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj): repo_data = rtdata_obj.get_yaml_subset('repository').values.tolist() @@ -279,8 +310,11 @@ def main(): functions_obj = get_approved_functions(rtdata_obj) repo_list = get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj) for single_repo in repo_list: + print(f'Processing {single_repo.address} repository') for single_pr in single_repo.pullreq_list: + print(f'Processing pull request #{single_pr.preq_obj.id}') process_pr(single_pr, ghinterface_obj, machine_obj, functions_obj) + print(f'Finished processing pull request #{single_pr.preq_obj.id}') if __name__ == '__main__': main() diff --git a/rt_auto.sh b/rt_auto.sh index 82080d3596..713faf2fcf 100644 --- a/rt_auto.sh +++ b/rt_auto.sh @@ -4,6 +4,7 @@ set -eux export RT_COMPILER='intel' source tests/detect_machine.sh echo "Machine ID: "+$MACHINE_ID +export MACHINE_ID=$MACHINE_ID if [[ $MACHINE_ID = hera.* ]]; then export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages diff --git a/rt_auto.yml b/rt_auto.yml index 10cbe1a7d4..f7adaaa6b6 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -33,6 +33,9 @@ workdir: '/home/bcurtis/WORK/test' baselinedir: '' repository: + - name: 'ufs-weather-model' + address: 'ufs-community/ufs-weather-model' + base: 'develop' - name: 'ufs-weather-model' address: 'BrianCurtis-NOAA/ufs-weather-model' base: 'develop' From ca2c2a36796600a60e34c078a4707eebb8381a0d Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 22 Jan 2021 20:04:55 +0000 Subject: [PATCH 038/117] Test for Brian --- rt_auto.yml | 2 +- tests/rt.conf | 182 +------------------------------------------ tests/rt.conf.good | 187 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 189 insertions(+), 182 deletions(-) create mode 100644 tests/rt.conf.good diff --git a/rt_auto.yml b/rt_auto.yml index f7adaaa6b6..07514d27e6 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -41,7 +41,7 @@ base: 'develop' functions: - name: 'RT' - command: './tests/rt.sh -ek -l rt.test' + command: './tests/rt.sh -efk' callback_fnc: 'move_rt_logs' # - name: 'RT' # command: './rt.sh -ef' diff --git a/tests/rt.conf b/tests/rt.conf index 198093defb..2ac3fe1c97 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -4,184 +4,4 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | -RUN | fv3_ccpp_control | | fv3 | -RUN | fv3_ccpp_decomp | | | -RUN | fv3_ccpp_2threads | | | -RUN | fv3_ccpp_restart | | | fv3_ccpp_control -RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | -RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | -RUN | fv3_ccpp_stochy | | fv3 | -RUN | fv3_ccpp_ca | | fv3 | -RUN | fv3_ccpp_lndp | | fv3 | -# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it -RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_lheatstrg | | fv3 | - -# WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | -RUN | fv3_ccpp_multigases | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | -RUN | fv3_ccpp_control_32bit | | fv3 | -RUN | fv3_ccpp_stretched | | fv3 | -RUN | fv3_ccpp_stretched_nest | | fv3 | - -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | -RUN | fv3_ccpp_regional_control | | fv3 | -RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control -RUN | fv3_ccpp_regional_quilt | | fv3 | -RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | -#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | -#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_control_debug | | fv3 | -RUN | fv3_ccpp_stretched_nest_debug | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | -RUN | fv3_ccpp_gfdlmp | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | -#RUN | fv3_ccpp_csawmgshoc | | fv3 | -#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | -RUN | fv3_ccpp_csawmg | | fv3 | -RUN | fv3_ccpp_satmedmf | | fv3 | -RUN | fv3_ccpp_satmedmfq | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | -RUN | fv3_ccpp_cpt | | fv3 | -RUN | fv3_ccpp_gsd | | fv3 | -# These two tests crash with NaNs on jet.intel -RUN | fv3_ccpp_rap | - jet.intel | fv3 | -RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | -RUN | fv3_ccpp_thompson | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | | fv3 | -# This test crashes with NaNs on jet.intel -RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | | fv3 | -RUN | fv3_ccpp_gfs_v16beta | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_restart | | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_stochy | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | - -COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | -# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests -RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16beta_flake | | fv3 | -RUN | fv3_ccpp_gocart_clm | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_flake | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | - -################################################################################################################################################################################### -# DEBUG tests # -################################################################################################################################################################################### - -# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 -COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta,FV3_GFS_v16beta_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | | fv3 | - -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_gsd_debug | | fv3 | -RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | -RUN | fv3_ccpp_thompson_debug | | fv3 | -RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | - -################################################################################################################################################################################### -# CPLD tests # -################################################################################################################################################################################### - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_control | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart | - wcoss_cray gaea.intel jet.intel | | cpld_control -RUN | cpld_controlfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac - -RUN | cpld_2threads | - wcoss_cray gaea.intel jet.intel | | -RUN | cpld_decomp | - wcoss_cray gaea.intel jet.intel | | -RUN | cpld_satmedmf | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_ca | - wcoss_cray gaea.intel jet.intel | fv3 | - -#12h/36h/48h restart tests -RUN | cpld_control_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c192 -RUN | cpld_controlfrac_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 - -RUN | cpld_control_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 -RUN | cpld_controlfrac_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 - -RUN | cpld_bmark | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmark | - wcoss_cray gaea.intel jet.intel | | cpld_bmark -RUN | cpld_bmarkfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac - -#6h/6h/12h restart test -RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debugfrac | - wcoss_cray gaea.intel jet.intel | fv3 | - -################################################################################################################################################################################### -# Data Atmosphere tests # -################################################################################################################################################################################### - -COMPILE | DATM=Y S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_control_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_restart_cfsr | - wcoss_cray gaea.intel jet.intel | | datm_control_cfsr -RUN | datm_control_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | datm_bulk_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_bulk_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | datm_mx025_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_mx025_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_debug_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | fv3_ccpp_control | | fv3 | | - wcoss_cray gaea.intel jet.intel | fv3 | diff --git a/tests/rt.conf.good b/tests/rt.conf.good new file mode 100644 index 0000000000..198093defb --- /dev/null +++ b/tests/rt.conf.good @@ -0,0 +1,187 @@ +################################################################################################################################################################################### +# PROD tests # +################################################################################################################################################################################### + +COMPILE | SUITES=FV3_GFS_2017 | | fv3 | + +RUN | fv3_ccpp_control | | fv3 | +RUN | fv3_ccpp_decomp | | | +RUN | fv3_ccpp_2threads | | | +RUN | fv3_ccpp_restart | | | fv3_ccpp_control +RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | +RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | +RUN | fv3_ccpp_stochy | | fv3 | +RUN | fv3_ccpp_ca | | fv3 | +RUN | fv3_ccpp_lndp | | fv3 | +# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it +RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_lheatstrg | | fv3 | + +# WW3 not working on Cheyenne in the past, need to check if it works now +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +RUN | fv3_ccpp_multigases | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +RUN | fv3_ccpp_control_32bit | | fv3 | +RUN | fv3_ccpp_stretched | | fv3 | +RUN | fv3_ccpp_stretched_nest | | fv3 | + +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | +RUN | fv3_ccpp_regional_control | | fv3 | +RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control +RUN | fv3_ccpp_regional_quilt | | fv3 | +RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | +#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | +#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +RUN | fv3_ccpp_gfdlmp | | fv3 | +RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | +RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +#RUN | fv3_ccpp_csawmgshoc | | fv3 | +#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | +RUN | fv3_ccpp_csawmg | | fv3 | +RUN | fv3_ccpp_satmedmf | | fv3 | +RUN | fv3_ccpp_satmedmfq | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | +RUN | fv3_ccpp_cpt | | fv3 | +RUN | fv3_ccpp_gsd | | fv3 | +# These two tests crash with NaNs on jet.intel +RUN | fv3_ccpp_rap | - jet.intel | fv3 | +RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | +RUN | fv3_ccpp_thompson | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | | fv3 | +# This test crashes with NaNs on jet.intel +RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v15p2 | | fv3 | +RUN | fv3_ccpp_gfs_v16beta | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_restart | | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_stochy | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | + +COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | +# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests +RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16beta_flake | | fv3 | +RUN | fv3_ccpp_gocart_clm | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_flake | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | + +################################################################################################################################################################################### +# DEBUG tests # +################################################################################################################################################################################### + +# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) +# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 +COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta,FV3_GFS_v16beta_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | | fv3 | + +COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_gsd_debug | | fv3 | +RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | +RUN | fv3_ccpp_thompson_debug | | fv3 | +RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | +RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | + +################################################################################################################################################################################### +# CPLD tests # +################################################################################################################################################################################### + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart | - wcoss_cray gaea.intel jet.intel | | cpld_control +RUN | cpld_controlfrac | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac + +RUN | cpld_2threads | - wcoss_cray gaea.intel jet.intel | | +RUN | cpld_decomp | - wcoss_cray gaea.intel jet.intel | | +RUN | cpld_satmedmf | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_ca | - wcoss_cray gaea.intel jet.intel | fv3 | + +#12h/36h/48h restart tests +RUN | cpld_control_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c192 +RUN | cpld_controlfrac_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 + +RUN | cpld_control_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 +RUN | cpld_controlfrac_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 + +RUN | cpld_bmark | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmark | - wcoss_cray gaea.intel jet.intel | | cpld_bmark +RUN | cpld_bmarkfrac | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac + +#6h/6h/12h restart test +RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | + +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_debugfrac | - wcoss_cray gaea.intel jet.intel | fv3 | + +################################################################################################################################################################################### +# Data Atmosphere tests # +################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_control_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_restart_cfsr | - wcoss_cray gaea.intel jet.intel | | datm_control_cfsr +RUN | datm_control_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +RUN | datm_bulk_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_bulk_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +RUN | datm_mx025_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_mx025_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_debug_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | From 6b63abfa4f8bb76d5a88db965874366c2bfa95e3 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 22 Jan 2021 20:08:20 +0000 Subject: [PATCH 039/117] Typo in RT command --- rt_auto.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rt_auto.yml b/rt_auto.yml index 07514d27e6..7e595a4604 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -41,7 +41,7 @@ base: 'develop' functions: - name: 'RT' - command: './tests/rt.sh -efk' + command: './tests/rt.sh -ek' callback_fnc: 'move_rt_logs' # - name: 'RT' # command: './rt.sh -ef' From 670e58d1bb6a08f036021e33007aa188815f2ff1 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 22 Jan 2021 20:24:34 +0000 Subject: [PATCH 040/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 5271 +------------------------- 1 file changed, 4 insertions(+), 5267 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 9f8210f655..163101acdc 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Jan 21 18:57:51 UTC 2021 +Fri Jan 22 20:10:28 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_46949/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,5269 +82,6 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_prod -Checking test 046 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gocart_clm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_control_prod -Checking test 069 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_prod -Checking test 070 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restartfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_2threads_prod -Checking test 073 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_decomp_prod -Checking test 074 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_ca_prod -Checking test 076 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_control_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_restart_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_controlfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_restartfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_control_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_restart_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_controlfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_restartfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmark_prod -Checking test 085 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_restart_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_restart_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmark_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_bmarkfrac_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_debug_prod -Checking test 094 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 094 cpld_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_debugfrac_prod -Checking test 095 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debugfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_control_cfsr -Checking test 096 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_control_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_restart_cfsr -Checking test 097 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_restart_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_control_gefs -Checking test 098 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_control_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_bulk_cfsr -Checking test 099 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_bulk_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_bulk_gefs -Checking test 100 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_mx025_cfsr -Checking test 101 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_mx025_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_mx025_gefs -Checking test 102 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_debug_cfsr -Checking test 103 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 103 datm_debug_cfsr PASS - - REGRESSION TEST WAS SUCCESSFUL -Thu Jan 21 20:05:03 UTC 2021 -Elapsed time: 01h:07m:12s. Have a nice day! +Fri Jan 22 20:24:32 UTC 2021 +Elapsed time: 00h:14m:05s. Have a nice day! From 730e7f42724366a8f306f1ee381cca4fac660e9a Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 25 Jan 2021 21:42:50 +0000 Subject: [PATCH 041/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 163101acdc..98f2a68228 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Jan 22 20:10:28 UTC 2021 +Mon Jan 25 21:25:02 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_46949/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_59716/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -83,5 +83,5 @@ Test 001 fv3_ccpp_control PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jan 22 20:24:32 UTC 2021 -Elapsed time: 00h:14m:05s. Have a nice day! +Mon Jan 25 21:42:50 UTC 2021 +Elapsed time: 00h:17m:48s. Have a nice day! From d17ce261916694ceea4796281e45bf288dcc9b98 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 26 Jan 2021 16:52:12 +0000 Subject: [PATCH 042/117] Removes DIR of PR's that don't exist, and removes dir of RT runs --- rt_auto.py | 34 +++++++++++++++++++++++++++++++++- rt_auto.yml | 13 +++++++++---- 2 files changed, 42 insertions(+), 5 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 674e162c90..97b7944a37 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -234,7 +234,9 @@ def move_rt_logs(pullreq_obj): move_rt_commands = [ ['git add '+rt_log, pullreq_obj.clone_dir], ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pullreq_obj.clone_dir], - ['git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir] + ['git pull origin '+pullreq_obj.branch, pullreq_obj.clone_dir], + ['git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir], + ['rm -rf '+pullreq_obj.clone_dir, pullreq_obj.clone_dir] ] for command, in_cwd in move_rt_commands: print(f'Attempting to run: {command}') @@ -302,6 +304,35 @@ def get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj): repo_list = list(repo_list) return repo_list +def delete_old_pullreq(repo_list, machine_obj): + # Get all PR ID Nums + pr_id_list = [str(single_pr.preq_obj.id) for single_repo in repo_list for single_pr in single_repo.pullreq_list] + dir_list = next(os.walk(machine_obj.workdir))[1] + not_in_both = [item for item in dir_list if not item in pr_id_list] + + for not_in in not_in_both: + if os.path.isdir(machine_obj.workdir+'/'+not_in): + command = ['rm -rf '+machine_obj.workdir+'/'+not_in] + print(f'Attempting to run: {command}') + try: + retcode = subprocess.Popen(command, shell=True) + retcode.wait() + if retcode.returncode==1: + print('Error Occured:') + print(f'Stdout: {retcode.stdout}') + print(f'Stderr: {retcode.stderr}') + sys.exit() + except OSError as e: + print(f'Execution failed: {e}') + sys.exit() + else: + if os.path.isdir(machine_obj.workdir+'/'+not_in): + print(f'WARNING: Successful command but dir was not removed') + else: + print(f'Command {command} ran successfully') + else: + print(f'Somehow directory called for removal does not exist, skipping..') + def main(): GHUSERNAME = 'BrianCurtis-NOAA' ghinterface_obj = GHInterface(GHUSERNAME) @@ -309,6 +340,7 @@ def main(): machine_obj = Machine(rtdata_obj) functions_obj = get_approved_functions(rtdata_obj) repo_list = get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj) + delete_old_pullreq(repo_list, machine_obj) for single_repo in repo_list: print(f'Processing {single_repo.address} repository') for single_pr in single_repo.pullreq_list: diff --git a/rt_auto.yml b/rt_auto.yml index 7e595a4604..9bee901f65 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -1,9 +1,18 @@ --- machines: + #RDHPCS - name: 'hera' regexhostname: 'hfe\d\d' workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis/test' baselinedir: '' + - name: 'gaea' + regexhostname: 'gaea\d\d' + workdir: '/lustre/dev/Brian.Curtis/test' + baselinedir: '' + - name: 'jet' + regexhostname: 'fe\d' + workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis/test' + baselinedir: '' - name: 'orion' regexhostname: 'Orion-login-\d.HPC.MsState.Edu' workdir: '/work/noaa/nems/bcurtis/test' @@ -28,10 +37,6 @@ regexhostname: 'llogin\d' workdir: False baselinedir: '' - - name: 'neon' - regexhostname: 'Neon' - workdir: '/home/bcurtis/WORK/test' - baselinedir: '' repository: - name: 'ufs-weather-model' address: 'ufs-community/ufs-weather-model' From b1e4fe6847608f31364421688d873dc483a37f42 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 27 Jan 2021 13:44:29 +0000 Subject: [PATCH 043/117] Force commit message to default on auto pull --- rt_auto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rt_auto.py b/rt_auto.py index 97b7944a37..9e2bc4e96d 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -234,7 +234,7 @@ def move_rt_logs(pullreq_obj): move_rt_commands = [ ['git add '+rt_log, pullreq_obj.clone_dir], ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pullreq_obj.clone_dir], - ['git pull origin '+pullreq_obj.branch, pullreq_obj.clone_dir], + ['git pull --commit origin '+pullreq_obj.branch, pullreq_obj.clone_dir], ['git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir], ['rm -rf '+pullreq_obj.clone_dir, pullreq_obj.clone_dir] ] From d092abbb453307fe1d4aec4491d0c9f90a861b67 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 27 Jan 2021 14:24:39 +0000 Subject: [PATCH 044/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 98f2a68228..0122d49575 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Mon Jan 25 21:25:02 UTC 2021 +Wed Jan 27 14:10:51 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_59716/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_162555/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -83,5 +83,5 @@ Test 001 fv3_ccpp_control PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 25 21:42:50 UTC 2021 -Elapsed time: 00h:17m:48s. Have a nice day! +Wed Jan 27 14:24:39 UTC 2021 +Elapsed time: 00h:13m:48s. Have a nice day! From 0b686c963eb3bc6faf6f0046b6a0b2c950322b6c Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 27 Jan 2021 08:25:39 -0600 Subject: [PATCH 045/117] Auto: Added Updated RT Log file: tests/RegressionTests_orion.intel.log --- tests/RegressionTests_orion.intel.log | 5271 +------------------------ 1 file changed, 4 insertions(+), 5267 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index f5b1d5fbd7..faa36d3061 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Jan 21 12:55:28 CST 2021 +Wed Jan 27 08:10:42 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_117492/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,5269 +82,6 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_prod -Checking test 046 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gocart_clm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_control_prod -Checking test 069 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_prod -Checking test 070 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restartfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_2threads_prod -Checking test 073 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_decomp_prod -Checking test 074 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_ca_prod -Checking test 076 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_ca PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_control_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_restart_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_controlfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_restartfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_control_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_restart_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_controlfrac_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_restartfrac_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmark_prod -Checking test 085 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_restart_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_restart_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmark_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_bmarkfrac_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_debug_prod -Checking test 094 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 094 cpld_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_debugfrac_prod -Checking test 095 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debugfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_control_cfsr -Checking test 096 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_control_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_restart_cfsr -Checking test 097 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_restart_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_control_gefs -Checking test 098 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_control_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_bulk_cfsr -Checking test 099 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_bulk_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_bulk_gefs -Checking test 100 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_mx025_cfsr -Checking test 101 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_mx025_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_mx025_gefs -Checking test 102 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_debug_cfsr -Checking test 103 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 103 datm_debug_cfsr PASS - - REGRESSION TEST WAS SUCCESSFUL -Thu Jan 21 14:27:59 CST 2021 -Elapsed time: 01h:32m:32s. Have a nice day! +Wed Jan 27 08:25:39 CST 2021 +Elapsed time: 00h:14m:58s. Have a nice day! From adce8f6dc2081d514270fb3afdc7f61c05b6e93e Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 27 Jan 2021 14:56:17 +0000 Subject: [PATCH 046/117] Remove dir for specific RT, fix prompt after pull merge --- rt_auto.py | 7 ++++--- rt_auto.yml | 47 +++++++++++++++++++++++------------------------ 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/rt_auto.py b/rt_auto.py index 9e2bc4e96d..4c488fbf06 100644 --- a/rt_auto.py +++ b/rt_auto.py @@ -229,14 +229,15 @@ def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): def move_rt_logs(pullreq_obj): rt_log = 'tests/RegressionTests_'+pullreq_obj.machine_obj.machineid+'.log' filepath = pullreq_obj.clone_dir+'/'+rt_log + rm_filepath = '/'.join((pullreq_obj.clone_dir.split('/'))[:-1]) if os.path.exists(filepath): move_rt_commands = [ ['git add '+rt_log, pullreq_obj.clone_dir], ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pullreq_obj.clone_dir], - ['git pull --commit origin '+pullreq_obj.branch, pullreq_obj.clone_dir], + ['git pull --no-edit origin '+pullreq_obj.branch, pullreq_obj.clone_dir], ['git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir], - ['rm -rf '+pullreq_obj.clone_dir, pullreq_obj.clone_dir] + ['rm -rf '+rm_filepath, pullreq_obj.machine_obj.workdir] ] for command, in_cwd in move_rt_commands: print(f'Attempting to run: {command}') @@ -312,7 +313,7 @@ def delete_old_pullreq(repo_list, machine_obj): for not_in in not_in_both: if os.path.isdir(machine_obj.workdir+'/'+not_in): - command = ['rm -rf '+machine_obj.workdir+'/'+not_in] + command = 'rm -rf '+machine_obj.workdir+'/'+not_in print(f'Attempting to run: {command}') try: retcode = subprocess.Popen(command, shell=True) diff --git a/rt_auto.yml b/rt_auto.yml index 9bee901f65..7f56516fc7 100644 --- a/rt_auto.yml +++ b/rt_auto.yml @@ -11,32 +11,33 @@ baselinedir: '' - name: 'jet' regexhostname: 'fe\d' - workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis/test' + workdir: '' baselinedir: '' - name: 'orion' regexhostname: 'Orion-login-\d.HPC.MsState.Edu' workdir: '/work/noaa/nems/bcurtis/test' baselinedir: '' - # VENUS - - name: 'wcoss_dell_p3' - regexhostname: 'v\d\d[a-z]\d' - workdir: False - baselinedir: '' - # MARS - - name: 'wcoss_dell_p3' - regexhostname: 'm\d\d[a-z]\d' - workdir: False - baselinedir: '' - # SURGE - - name: 'wcoss_cray' - regexhostname: 'slogin\d' - workdir: False - baselinedir: '' - # LUNA - - name: 'wcoss_cray' - regexhostname: 'llogin\d' - workdir: False - baselinedir: '' + # NOT SUPPORTED + # # VENUS + # - name: 'wcoss_dell_p3' + # regexhostname: 'v\d\d[a-z]\d' + # workdir: False + # baselinedir: '' + # # MARS + # - name: 'wcoss_dell_p3' + # regexhostname: 'm\d\d[a-z]\d' + # workdir: False + # baselinedir: '' + # # SURGE + # - name: 'wcoss_cray' + # regexhostname: 'slogin\d' + # workdir: False + # baselinedir: '' + # # LUNA + # - name: 'wcoss_cray' + # regexhostname: 'llogin\d' + # workdir: False + # baselinedir: '' repository: - name: 'ufs-weather-model' address: 'ufs-community/ufs-weather-model' @@ -46,10 +47,8 @@ base: 'develop' functions: - name: 'RT' - command: './tests/rt.sh -ek' + command: './tests/rt.sh -e' callback_fnc: 'move_rt_logs' - # - name: 'RT' - # command: './rt.sh -ef' # - name: 'BL' # command: './rt.sh -cef' # callback_fnc: '' From e2443b31bc542196b21a9be53513d88d2186022f Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 27 Jan 2021 15:21:44 +0000 Subject: [PATCH 047/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 5277 +------------------------- 1 file changed, 10 insertions(+), 5267 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 231562e809..52c46ec962 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,16 +1,16 @@ -Sun Jan 24 02:36:12 UTC 2021 +Wed Jan 27 15:06:56 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_128349/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -70,5263 +70,6 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_prod -Checking test 046 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gocart_clm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_control_prod -Checking test 069 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_prod -Checking test 070 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restartfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_2threads_prod -Checking test 073 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_decomp_prod -Checking test 074 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_ca_prod -Checking test 076 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_control_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_restart_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_controlfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_restartfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_control_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_restart_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_controlfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_restartfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmark_prod -Checking test 085 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_restart_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_restart_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmark_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_bmarkfrac_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_debug_prod -Checking test 094 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 094 cpld_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_debugfrac_prod -Checking test 095 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debugfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_control_cfsr -Checking test 096 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_control_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_restart_cfsr -Checking test 097 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_restart_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_control_gefs -Checking test 098 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_control_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_bulk_cfsr -Checking test 099 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_bulk_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_bulk_gefs -Checking test 100 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_mx025_cfsr -Checking test 101 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_mx025_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_mx025_gefs -Checking test 102 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_debug_cfsr -Checking test 103 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 103 datm_debug_cfsr PASS - - REGRESSION TEST WAS SUCCESSFUL -Sun Jan 24 03:40:50 UTC 2021 -Elapsed time: 01h:04m:39s. Have a nice day! +Wed Jan 27 15:21:43 UTC 2021 +Elapsed time: 00h:14m:48s. Have a nice day! From 59e19f9c1f9a6700a7e650ae72cede90587109f7 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 27 Jan 2021 20:36:12 +0000 Subject: [PATCH 048/117] Moved automated RT code into tests/auto and moved GHUSERNAME into accesstoken.txt read --- rt_auto.py.old | 178 -------------------------- rt_auto.py => tests/auto/rt_auto.py | 16 ++- rt_auto.sh => tests/auto/rt_auto.sh | 2 +- rt_auto.yml => tests/auto/rt_auto.yml | 12 +- 4 files changed, 16 insertions(+), 192 deletions(-) delete mode 100644 rt_auto.py.old rename rt_auto.py => tests/auto/rt_auto.py (96%) rename rt_auto.sh => tests/auto/rt_auto.sh (97%) rename rt_auto.yml => tests/auto/rt_auto.yml (76%) diff --git a/rt_auto.py.old b/rt_auto.py.old deleted file mode 100644 index 4e2f8f8bc4..0000000000 --- a/rt_auto.py.old +++ /dev/null @@ -1,178 +0,0 @@ -# HEADER -# Written by Brian Curtis -# Automation of RT tasks using github cli - -from github import Github as gh -import datetime -import pandas as pd -import socket -import threading -import subprocess -import re -import sys -import yaml -import os - -class machine_info(): - - def __init__(self, name, regexhostname, workdir, baselinedir): - self.name = name - self.regexhostname = regexhostname - self.workdir = workdir - self.baselinedir = baselinedir - -def get_access_token(): - # CREATE FILE "accesstoken.txt" add API Token and change perms appropriately - # GITHUB RATE LIMIT FOR AUTHENTICATED USERS IS 5000 REQUESTS PER HOUR - f = open("accesstoken.txt", 'rb') - GHACCESSTOKEN = f.read() - f.close() - GHACCESSTOKEN = GHACCESSTOKEN.decode("utf-8").strip('\n') - - return GHACCESSTOKEN - -def read_yaml_data(filename): - stream = open(db_filename, 'r') - yaml_data = yaml.load(stream, Loader=yaml.SafeLoader) - stream.close() - return yaml_data - -def get_yaml_subset(in_yaml, keyin): - try: - yaml_subset = in_yaml[keyin] - except: - sys.exit("Unable to get yaml subset: {}. Quitting".format(keyin)) - df = pd.DataFrame.from_dict(yaml_subset) - return df - -def get_machine_info(static_data): - hostname = socket.gethostname() - machines = get_yaml_subset(static_data, "machines") - regexmachines = machines['regexhostname'].values - for i, mach in enumerate(regexmachines): - if re.search(mach, hostname): - print("{} is an approved machine".format(hostname)) - mach_db_info = machines.iloc[i] - machine = machine_info(mach_db_info['name'], mach_db_info['regexhostname'], - mach_db_info['workdir'], mach_db_info['baselinedir']) - return machine - else: - continue - sys.exit("Hostname {} does not match approved list. Quitting".format(hostname)) - -def connect_to_github(GHACCESSTOKEN): # In case there's more needed later - client = gh(GHACCESSTOKEN) #will work if None for public repos. - return client - -def process_pulls(pulls, repo): - valid_actions = get_yaml_subset(static_data, "actions") - for pr in pulls: - labels = pr.get_labels() - for label in labels: - if label.name.split('-')[1].lower() == machine.name.lower(): - for action_name, action_command, action_callback in valid_actions.values.tolist(): - if label.name.split('-')[0].lower() == action_name.lower(): - try: - pr_workdir = clone_pr_repo(pr) - process_actions(action_callback, action_command, pr_workdir, pr) - except Exception as e: - print("ERROR RUNNING RT {} with error: {}".format(action_name, e)) - continue - pr.remove_from_labels(label.name.split('-')[0]+"-"+label.name.split('-')[1]) - -def clone_pr_repo(pr): - branch = pr.head.ref - repo_name = pr.head.repo.name - git_url = pr.head.repo.html_url - repo_dir_str = machine.workdir+"/"+str(pr.id)+"/"+datetime.datetime.now().strftime("%Y%m%d%H%M%S") - git_url_w_login = git_url.split('//') - git_url_w_login = git_url_w_login[0]+"//"+GHUSERNAME+":"+GHACCESSTOKEN+"@"+git_url_w_login[1] - - create_repo_commands = [ - ["mkdir -p \""+repo_dir_str+"\"", machine.workdir], - ["git clone -b "+branch+" "+git_url_w_login, repo_dir_str], - ["git submodule update --init --recursive", repo_dir_str+"/"+repo_name], - ["module use modulefiles/{}.intel && module load fv3".format(machine.name.lower()), repo_dir_str+"/"+repo_name] - ] - - for command, in_cwd in create_repo_commands: - print("Attempting to run: {}".format(command)) - try: - retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) - retcode.wait() - if retcode.returncode==1: - print("Error Occured:") - print("Stdout: {}".format(retcode.stdout)) - print("Stderr: {}".format(retcode.stderr)) - sys.exit() - except OSError as e: - print("Execution failed: {}".format(e)) - sys.exit() - - return repo_dir_str+"/"+repo_name - -def move_rt_logs(pr, pr_workdir): - rt_log = 'tests/RegressionTests_'+machine.name+'.intel.log' - filepath = pr_workdir+'/'+rt_log - print("File path issssss {}".format(filepath)) - if os.path.exists(filepath): - branch = pr.head.ref - print("Branch used is: {}".format(branch)) - - move_rt_commands = [ - ['git add '+rt_log, pr_workdir], - ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pr_workdir], - ['git push origin '+branch, pr_workdir] - ] - for command, in_cwd in move_rt_commands: - print("Attempting to run: {}".format(command)) - try: - retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) - retcode.wait() - if retcode.returncode==1: - print("Error Occured:") - print("Stdout: {}".format(retcode.stdout)) - print("Stderr: {}".format(retcode.stderr)) - sys.exit() - except OSError as e: - print("Execution failed: {}".format(e)) - sys.exit() - else: - print("ERROR: Could not find RT log") - sys.exit() - -def process_actions(callback_fnc, command, pr_workdir, pr): - - def create_threaded_call(callback_fnc, command, cwd_in): - - def runInThread(callback_fnc, command, cwd_in): - proc = subprocess.Popen(command, shell=True, cwd=cwd_in) - proc.wait() - globals()[callback_fnc](pr, pr_workdir) - return - - thread = threading.Thread(target=runInThread, - args=(callback_fnc, command, cwd_in)) - thread.start() - - return thread # returns immediately after the thread starts - - print("{} is running command {}".format(machine.name.upper(), command)) - thread = create_threaded_call(callback_fnc, command, pr_workdir+'/tests') - -# START OF MAIN -db_filename = 'rt_auto.yml' -machine = get_machine_info(read_yaml_data(db_filename)) -GHUSERNAME = "BrianCurtis-NOAA" -GHACCESSTOKEN = get_access_token() - -# Initial items -static_data = read_yaml_data('rt_auto.yml') -repos = get_yaml_subset(static_data, "repository") -client = connect_to_github(GHACCESSTOKEN) - -# Maybe a process_repo(repos) function start? -for name,address,base in repos.values.tolist(): - repo = client.get_repo(address) - pull_reqs = repo.get_pulls(state='open', sort='created', base=base) - triggers = process_pulls(pull_reqs, repo) diff --git a/rt_auto.py b/tests/auto/rt_auto.py similarity index 96% rename from rt_auto.py rename to tests/auto/rt_auto.py index 4c488fbf06..6c6846258e 100644 --- a/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -78,20 +78,22 @@ def verify_command(self, comparable): class GHInterface: - def __init__(self, GHUSERNAME): - self.GHUSERNAME = GHUSERNAME + def __init__(self): self.get_access_token() self.client = gh(self.GHACCESSTOKEN) def get_access_token(self): if os.path.exists('accesstoken.txt'): f = open('accesstoken.txt', 'rb') - self.GHACCESSTOKEN = f.read() + filedata = f.read() f.close() - self.GHACCESSTOKEN = self.GHACCESSTOKEN.decode('utf-8').strip('\n') + filedata = str(filedata)[2:-1].split('\\n') + self.GHACCESSTOKEN = filedata[0] + self.GHUSERNAME = filedata[1] else: sys.exit('Please create a file "accesstoken.txt" that contains your'\ - ' GitHub API Token.\nMake sure to set permissions so others can'\ + ' GitHub API Token on the first line, and GitHub Username on the'\ + ' second line.\nMake sure to set permissions so others can'\ ' not read it (400)') # REPO STUFF @@ -236,7 +238,7 @@ def move_rt_logs(pullreq_obj): ['git add '+rt_log, pullreq_obj.clone_dir], ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pullreq_obj.clone_dir], ['git pull --no-edit origin '+pullreq_obj.branch, pullreq_obj.clone_dir], - ['git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir], + ['sleep(10); git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir], ['rm -rf '+rm_filepath, pullreq_obj.machine_obj.workdir] ] for command, in_cwd in move_rt_commands: @@ -336,7 +338,7 @@ def delete_old_pullreq(repo_list, machine_obj): def main(): GHUSERNAME = 'BrianCurtis-NOAA' - ghinterface_obj = GHInterface(GHUSERNAME) + ghinterface_obj = GHInterface() rtdata_obj= RTData() machine_obj = Machine(rtdata_obj) functions_obj = get_approved_functions(rtdata_obj) diff --git a/rt_auto.sh b/tests/auto/rt_auto.sh similarity index 97% rename from rt_auto.sh rename to tests/auto/rt_auto.sh index 713faf2fcf..77cc34a9d1 100644 --- a/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -2,7 +2,7 @@ set -eux export RT_COMPILER='intel' -source tests/detect_machine.sh +source ../detect_machine.sh echo "Machine ID: "+$MACHINE_ID export MACHINE_ID=$MACHINE_ID if [[ $MACHINE_ID = hera.* ]]; then diff --git a/rt_auto.yml b/tests/auto/rt_auto.yml similarity index 76% rename from rt_auto.yml rename to tests/auto/rt_auto.yml index 7f56516fc7..ab50b74136 100644 --- a/rt_auto.yml +++ b/tests/auto/rt_auto.yml @@ -4,19 +4,19 @@ - name: 'hera' regexhostname: 'hfe\d\d' workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis/test' - baselinedir: '' + baselinedir: '/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs' - name: 'gaea' regexhostname: 'gaea\d\d' - workdir: '/lustre/dev/Brian.Curtis/test' - baselinedir: '' + workdir: '/lustre/f2/scratch/ncep/Brian.Curtis/test' + baselinedir: '/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs' - name: 'jet' regexhostname: 'fe\d' - workdir: '' - baselinedir: '' + workdir: '/lfs4/HFIP/hfv3gfs/Brian.Curtis/test' + baselinedir: '/mnt/lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs' - name: 'orion' regexhostname: 'Orion-login-\d.HPC.MsState.Edu' workdir: '/work/noaa/nems/bcurtis/test' - baselinedir: '' + baselinedir: '/work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs' # NOT SUPPORTED # # VENUS # - name: 'wcoss_dell_p3' From 3f1ccb858339c8a80f6df3334cdb93d3ea8f67e0 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 27 Jan 2021 21:28:32 +0000 Subject: [PATCH 049/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 52c46ec962..4bbf4415a0 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Jan 27 15:06:56 UTC 2021 +Wed Jan 27 21:12:46 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_128349/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219435/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,5 +71,5 @@ Test 001 fv3_ccpp_control PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 27 15:21:43 UTC 2021 -Elapsed time: 00h:14m:48s. Have a nice day! +Wed Jan 27 21:28:32 UTC 2021 +Elapsed time: 00h:15m:47s. Have a nice day! From 4defe5abd60670ed72453189f1e6a6777a40d9f5 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 27 Jan 2021 21:31:17 +0000 Subject: [PATCH 050/117] Some typos with sleep and bringing in print function from futures in case python 2.7 is used. still testing python 2.7 usage for jet/cheyenne --- tests/auto/rt_auto.py | 4 +++- tests/auto/rt_auto.sh | 1 + tests/auto/rt_auto.yml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 6c6846258e..68571ccc7f 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -1,6 +1,7 @@ # HEADER # Written by Brian Curtis # Automation of RT tasks using github cli +from __future__ import print_function from github import Github as gh import datetime @@ -238,7 +239,8 @@ def move_rt_logs(pullreq_obj): ['git add '+rt_log, pullreq_obj.clone_dir], ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pullreq_obj.clone_dir], ['git pull --no-edit origin '+pullreq_obj.branch, pullreq_obj.clone_dir], - ['sleep(10); git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir], + ['sleep 10', pullreq_obj.clone_dir], + ['git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir], ['rm -rf '+rm_filepath, pullreq_obj.machine_obj.workdir] ] for command, in_cwd in move_rt_commands: diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 77cc34a9d1..7321b14a4d 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -18,6 +18,7 @@ elif [[ $MACHINE_ID = jet.* ]]; then export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages python rt_auto.py elif [[ $MACHINE_ID = gaea.* ]]; then + module load cray-python/3.7.3.2 export PATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/lib/python3.7/site-packages python rt_auto.py diff --git a/tests/auto/rt_auto.yml b/tests/auto/rt_auto.yml index ab50b74136..4fd5a525d2 100644 --- a/tests/auto/rt_auto.yml +++ b/tests/auto/rt_auto.yml @@ -7,7 +7,7 @@ baselinedir: '/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs' - name: 'gaea' regexhostname: 'gaea\d\d' - workdir: '/lustre/f2/scratch/ncep/Brian.Curtis/test' + workdir: '/lustre/f2/pdata/ncep/Brian.Curtis/test' baselinedir: '/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs' - name: 'jet' regexhostname: 'fe\d' From 370b80b7f376caecfc075cb2ed7986a6030ede82 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 28 Jan 2021 10:47:29 -0500 Subject: [PATCH 051/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 3627 +------------------------- 1 file changed, 1 insertion(+), 3626 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 26908ff125..cd4f39bbbd 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,3628 +1,3 @@ -Mon Jan 25 13:13:12 EST 2021 +Thu Jan 28 10:45:50 EST 2021 Start Regression test - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_ccpp_control PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 017 fv3_ccpp_multigases PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_control_32bit PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_stretched PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 020 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 021 fv3_ccpp_regional_control PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 022 fv3_ccpp_regional_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 023 fv3_ccpp_regional_quilt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_control_debug_prod -Checking test 025 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 025 fv3_ccpp_control_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_stretched_nest_debug_prod -Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 026 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_csawmg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmfq PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_cpt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_gsd PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_rap PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_hrrr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v15p2_prod -Checking test 042 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_prod -Checking test 043 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gocart_clm PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gsd_debug_prod -Checking test 059 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gsd_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_thompson_debug_prod -Checking test 061 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -REGRESSION TEST WAS SUCCESSFUL -Mon Jan 25 14:03:57 EST 2021 -Elapsed time: 00h:50m:46s. Have a nice day! From e0792c4a836aa67887aea064cea5d8ba8f4e21db Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 28 Jan 2021 13:57:04 -0500 Subject: [PATCH 052/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index cd4f39bbbd..54c6ceaee5 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,3 +1,3 @@ -Thu Jan 28 10:45:50 EST 2021 +Thu Jan 28 13:55:24 EST 2021 Start Regression test From 72a7f0a6840ad19546498fc81e24cf0247ef4b7e Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 28 Jan 2021 20:59:51 +0000 Subject: [PATCH 053/117] don't need to load modulefiles, gaea reg exp check for hostname needed to be more specific, updated machineid where it was being used incorrectly --- tests/auto/rt_auto.py | 4 ++-- tests/auto/rt_auto.sh | 6 +++--- tests/auto/rt_auto.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 68571ccc7f..a9fd659872 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -192,8 +192,8 @@ def clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj): create_repo_commands = [ ['mkdir -p "'+pullreq_obj.repo_dir_str+'"', machine_obj.workdir], ['git clone -b '+pullreq_obj.branch+' '+git_url_w_login, pullreq_obj.repo_dir_str], - ['git submodule update --init --recursive', pullreq_obj.repo_dir_str+'/'+pullreq_obj.repo_name], - ['module use modulefiles/{}.intel && module load fv3'.format(machine_obj.name.lower()), pullreq_obj.repo_dir_str+'/'+pullreq_obj.repo_name] + ['git submodule update --init --recursive', pullreq_obj.repo_dir_str+'/'+pullreq_obj.repo_name] + # ['module use modulefiles/{} && module load fv3'.format(machine_obj.machineid), pullreq_obj.repo_dir_str+'/'+pullreq_obj.repo_name] ] for command, in_cwd in create_repo_commands: diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 7321b14a4d..0266df3d22 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -18,9 +18,9 @@ elif [[ $MACHINE_ID = jet.* ]]; then export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages python rt_auto.py elif [[ $MACHINE_ID = gaea.* ]]; then - module load cray-python/3.7.3.2 - export PATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin:$PATH - export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/lib/python3.7/site-packages + export AACNR="nggps_emc" # This applies to Brian.Curtis, may need change later + export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages python rt_auto.py elif [[ $MACHINE_ID = cheyenne.* ]]; then export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH diff --git a/tests/auto/rt_auto.yml b/tests/auto/rt_auto.yml index 4fd5a525d2..b1da5ce306 100644 --- a/tests/auto/rt_auto.yml +++ b/tests/auto/rt_auto.yml @@ -6,7 +6,7 @@ workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis/test' baselinedir: '/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs' - name: 'gaea' - regexhostname: 'gaea\d\d' + regexhostname: 'gaea\d{1,2}' workdir: '/lustre/f2/pdata/ncep/Brian.Curtis/test' baselinedir: '/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs' - name: 'jet' From 893ee82a9c7cec6cc696544e2308958cd382d507 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 28 Jan 2021 21:05:16 +0000 Subject: [PATCH 054/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 54c6ceaee5..57fa0fe2bc 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,3 +1,3 @@ -Thu Jan 28 13:55:24 EST 2021 +Thu Jan 28 16:03:37 EST 2021 Start Regression test From 515471de27bf48724d7afd92a99311754a7abc9b Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 13:26:03 +0000 Subject: [PATCH 055/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 57fa0fe2bc..55d681fba5 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,3 +1,3 @@ -Thu Jan 28 16:03:37 EST 2021 +Fri Jan 29 08:24:24 EST 2021 Start Regression test From fff222965a00ca5077b7d6b3f953ca95f5d4ea84 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 16:16:00 +0000 Subject: [PATCH 056/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 4bbf4415a0..12be24573b 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Jan 27 21:12:46 UTC 2021 +Fri Jan 29 16:01:14 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219435/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_123491/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,5 +71,5 @@ Test 001 fv3_ccpp_control PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 27 21:28:32 UTC 2021 -Elapsed time: 00h:15m:47s. Have a nice day! +Fri Jan 29 16:16:00 UTC 2021 +Elapsed time: 00h:14m:46s. Have a nice day! From 9ba3b4d55d49853cc30d77ea6a15bbc83ed19ad7 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 19:12:37 +0000 Subject: [PATCH 057/117] Added logger to all functions/classes. Added thread watcher so main() doesn't exit before all threads exit. Made each PR submit into a thread with daemon --- tests/auto/rt_auto.py | 227 ++++++++++++++++++++++++++++++++---------- 1 file changed, 172 insertions(+), 55 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index a9fd659872..826039f062 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -5,6 +5,7 @@ from github import Github as gh import datetime +import time import pandas as pd import socket import threading @@ -13,73 +14,101 @@ import sys import yaml import os +import logging class RTData: def __init__(self): + self.logger = logging.getLogger("RTData") self.DB_FILENAME = 'rt_auto.yml' self.data = self.read_yaml_data() def read_yaml_data(self): + self.logger.info(f'Reading in default YAML data') stream = open(self.DB_FILENAME, 'r') yaml_data = yaml.load(stream, Loader=yaml.SafeLoader) stream.close() + self.logger.info(f'Finished reading in YAML data') return yaml_data def get_yaml_subset(self, keyin): + self.logger.info(f'Getting YAML subset: {keyin}') try: yaml_subset = self.data[keyin] except: - sys.exit(f'Unable to get yaml subset: {keyin}. Quitting') + self.logger.critical(f'Unable to get yaml subset: {keyin}. Quitting') + sys.exit() df = pd.DataFrame.from_dict(yaml_subset) + self.logger.info(f'Finished getting YAML subset {keyin}') return df class Machine: def __init__(self, rtdata_obj): + self.logger = logging.getLogger("Machine") self.rtdata_obj = rtdata_obj self.get_machine_info() self.machineid = os.environ.get('MACHINE_ID') def get_machine_info(self): + self.logger.info(f'Getting machine information') hostname = socket.gethostname() + self.logger.debug(f'hostname is {hostname}') machines = self.rtdata_obj.get_yaml_subset('machines') regexmachines = machines['regexhostname'].values for i, mach in enumerate(regexmachines): if re.search(mach, hostname): - print(f'{hostname} is an approved machine') + self.logger.info(f'{hostname} is an approved machine') mach_db_info = machines.iloc[i] self.name = mach_db_info['name'] self.regexhostname = mach_db_info['regexhostname'] self.workdir = mach_db_info['workdir'] self.baselinedir = mach_db_info['baselinedir'] + self.logger.debug(f'self.name: {self.name}\n\ + self.regexhostname: {self.regexhostname}\n\ + self.workdir: {self.workdir}\n\ + self.baselinedir: {self.baselinedir}') + self.logger.info(f'Finished getting machine information') return else: continue - sys.exit(f'Hostname:{hostname} does not match approved list. Quitting') + self.logger.critical(f'Hostname:{hostname} does not match approved list. Quitting') + sys.exit() class Function: def __init__(self, name, command, callback): + self.logger = logging.getLogger("Function") self.name = name self.command = command self.callback = callback + self.logger.debug(f'Function object created') + self.logger.debug(f'self.name: {self.name}\n\ + self.command: {self.command}\n\ + self.callback: {self.callback}') def verify_name(self, comparable): + self.logger.debug(f'Verifying name: {comparable}') if re.match(self.name.lower(), comparable.lower()): + self.logger.debug(f'Match found') return True else: + self.logger.debug(f'Not a match') return False def verify_command(self, comparable): + self.logger.debug(f'Verifying command: {comparable}') if re.match(self.command.lower(), comparable.lower()): + self.logger.debug(f'Match found') return True else: + self.logger.debug(f'Not a match') return False class GHInterface: def __init__(self): + self.logger = logging.getLogger("GHInterface") self.get_access_token() self.client = gh(self.GHACCESSTOKEN) @@ -89,47 +118,60 @@ def get_access_token(self): filedata = f.read() f.close() filedata = str(filedata)[2:-1].split('\\n') + self.GHACCESSTOKEN = filedata[0] self.GHUSERNAME = filedata[1] + self.logger.debug(f'GHACCESSTOKEN is {self.GHACCESSTOKEN}') + self.logger.debug(f'GHUSERNAME is {self.GHUSERNAME}') else: - sys.exit('Please create a file "accesstoken.txt" that contains your'\ - ' GitHub API Token on the first line, and GitHub Username on the'\ - ' second line.\nMake sure to set permissions so others can'\ - ' not read it (400)') + self.logger.critical(f'Please create a file "accesstoken.txt" that'\ + ' contains your GitHub API Token on the first line, and GitHub'\ + ' Username on the second line.\nMake sure to set permission'\ + ' so others can not read it (400)') + sys.exit() # REPO STUFF class Repo: def __init__(self, name, address, base, machine_obj, ghinterface_obj): + self.logger = logging.getLogger("Repo") + self.logger.debug(f'Creating a Repo object') self.name = name self.address = address self.base = base + self.logger.debug(f'self.name: {self.name}\n\ + self.address: {self.address}\n\ + self.base {self.base}') self.machine_obj = machine_obj self.ghinterface_obj = ghinterface_obj self.get_GHrepo_object() self.get_repo_preqs() def get_GHrepo_object(self): + self.logger.debug(f'Getting list of GitHub Repo objects') try: self.ghrepo = self.ghinterface_obj.client.get_repo(self.address) except Exception as e: - print(f'Failed to get repo object with error {e}') - self.ghrepo = None + self.logger.critical(f'Failed to get repo object with error {e}') + sys.exit() def get_repo_preqs(self): + self.logger.debug(f'Creating list of PullReq objects') self.pullreq_list = [] try: preqs = self.ghrepo.get_pulls(state='open', sort='created', base=self.base) except Exception as e: - print(f'Failed to get pull object with error {e}') - preqs = None + self.logger.critical(f'Failed to get pull object with error {e}') + sys.exit() for preq in preqs: self.pullreq_list.append(PullReq(self, preq, self.machine_obj)) + self.logger.debug(f'Finished getting list of GutHub Repo objects') class PullReq: def __init__(self, repo_obj, preq_obj, machine_obj): + self.logger = logging.getLogger("PullReq") self.preq_obj = preq_obj self.repo_obj = repo_obj self.machine_obj = machine_obj @@ -138,9 +180,14 @@ def __init__(self, repo_obj, preq_obj, machine_obj): self.repo_name = self.preq_obj.head.repo.name self.git_url = self.preq_obj.head.repo.html_url self.repo_dir_str = self.machine_obj.workdir+'/'+str(preq_obj.id)+'/'+datetime.datetime.now().strftime('%Y%m%d%H%M%S') + self.logger.debug(f'self.branch: {self.branch}\n\ + self.repo_name: {self.repo_name}\n\ + self.git_url: {self.git_url}\n\ + self.repo_dir_str: {self.repo_dir_str}') self.get_pr_labels() def get_pr_labels(self): + self.logger.debug(f'Creating list of PRLabel objects') self.labels = [] pr_labels = self.preq_obj.get_labels() for pr_label in pr_labels: @@ -149,43 +196,54 @@ def get_pr_labels(self): self.labels.append(PRLabel(split_pr_label[1], split_pr_label[2])) else: continue + self.logger.debug(f'Finished creating list of PRLabel objects') def add_clone_dir(self, clone_dir): + self.logger.debug(f'Adding Clone Dir: {clone_dir}') self.clone_dir = clone_dir class PRLabel: def __init__(self, name, machine): + self.logger = logging.getLogger("PRLabel") self.name = name self.machine = machine + self.logger.debug(f'self.name: {self.name}\n\ + self.machine: {self.machine} ') self.function_obj = None def add_function(self, function_obj): + self.logger.debug("Adding function Object: {function_obj}") self.function_obj = function_obj def is_approved(self, machine_obj, functions): + self.logger.debug("Checking if PRLabel is approved") if re.match(self.machine.lower(), machine_obj.name.lower()): for function_obj in functions: if function_obj.verify_name(self.name): - print(f'Approved label "{self.name}-{self.machine}"') + self.logger.debug(f'Approved label: "{self.name}-{self.machine}"') self.add_function(function_obj) return True else: - print(f'Label not approved. Name: {self.name} not on approved list.') + self.logger.warning(f'Label not approved. Name: {self.name} not on approved list.') return False else: - print(f'Label not approved. Machine: {self.machine} not on approved list.') + self.logger.warning(f'Label not approved. Machine: {self.machine} not on approved list.') return False def get_approved_functions(rtdata_obj): + logger = logging.getLogger("get_approved_functions()") + logger.debug(f'Start of get_approved_functions()') function_data = rtdata_obj.get_yaml_subset('functions').\ values.tolist() + logger.debug("Sending function data off to Function objects") function_list = [Function(name,command,callback_fnc) for name,command,callback_fnc in function_data] + logger.debug(f'End of get_approved_functions()') return function_list def clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj): - + logger = logging.getLogger("clone_pr_repo()") git_url_w_login = pullreq_obj.git_url.split('//') git_url_w_login = git_url_w_login[0]+"//"+ghinterface_obj.GHUSERNAME+":"+ghinterface_obj.GHACCESSTOKEN+"@"+git_url_w_login[1] @@ -197,67 +255,83 @@ def clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj): ] for command, in_cwd in create_repo_commands: - print(f'Attempting to run: {command}'.format(command)) + logger.debug(f'Attempting to run: {command}'.format(command)) try: retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) retcode.wait() if retcode.returncode==1: - print('Error Occured:') - print(f'Stdout: {retcode.stdout}') - print(f'Stderr: {retcode.stderr}') + logger.critical('Error Occured:') + logger.critical(f'Stdout: {retcode.stdout}') + logger.critical(f'Stderr: {retcode.stderr}') sys.exit() except OSError as e: - print(f'Execution failed: {e}') + logger.critical(f'Execution failed with error: {e}') sys.exit() + else: + logger.debug(f'Finished Cloning {git_url_w_login}') pullreq_obj.add_clone_dir(pullreq_obj.repo_dir_str+"/"+pullreq_obj.repo_name) def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): + logger = logging.getLogger(f'PR#{pullreq_obj.preq_obj.id}') + logger.debug(f'Start') for prlabel in pullreq_obj.labels: if prlabel.is_approved(machine_obj, functions): + logger.debug(f'Removing Label Auto-{prlabel.name}-{prlabel.machine}') + pullreq_obj.preq_obj.remove_from_labels(f'Auto-{prlabel.name}-{prlabel.machine}') try: clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj) except Exception as e: - sys.exit(f'Error cloning repo: {pullreq_obj.git_url}') + logger.critical(f'Error cloning repo: {pullreq_obj.git_url}') + sys.exit() try: - goodexit = runInThread(prlabel.function_obj, pullreq_obj) + goodexit = runFunction(prlabel.function_obj, pullreq_obj) # thread, badexit = send_to_thread(prlabel.function_obj, pullreq_obj) except Exception as e: - print(f'ERROR RUNNING RT {prlabel.function_obj.command} with error: {e}') - continue + logger.critical(f'ERROR RUNNING RT {prlabel.function_obj.command} with error: {e}') + logger.debug(f'Adding back label Auto-{prlabel.name}-{prlabel.machine}') + pullreq_obj.preq_obj.add_to_labels(f'Auto-{prlabel.name}-{prlabel.machine}') + sys.exit() else: - if goodexit == True: - pullreq_obj.preq_obj.remove_from_labels(f'Auto-{prlabel.name}-{prlabel.machine}') + if goodexit == False: + logger.debug(f'runFunction exited with error') + pullreq_obj.preq_obj.add_to_labels(f'Auto-{prlabel.name}-{prlabel.machine}') + logger.debug(f'Adding back label Auto-{prlabel.name}-{prlabel.machine}') + logger.debug(f'End') def move_rt_logs(pullreq_obj): + logger = logging.getLogger("move_rt_logs()") rt_log = 'tests/RegressionTests_'+pullreq_obj.machine_obj.machineid+'.log' + logger.debug(f'rt_log is: {rt_log}') filepath = pullreq_obj.clone_dir+'/'+rt_log + logger.debug(f'filepath is: {filepath}') rm_filepath = '/'.join((pullreq_obj.clone_dir.split('/'))[:-1]) + logger.debug(f'rm_filepath is: {rm_filepath}') if os.path.exists(filepath): - move_rt_commands = [ ['git add '+rt_log, pullreq_obj.clone_dir], ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pullreq_obj.clone_dir], ['git pull --no-edit origin '+pullreq_obj.branch, pullreq_obj.clone_dir], ['sleep 10', pullreq_obj.clone_dir], - ['git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir], - ['rm -rf '+rm_filepath, pullreq_obj.machine_obj.workdir] + ['git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir] ] for command, in_cwd in move_rt_commands: - print(f'Attempting to run: {command}') + logger.debug(f'Attempting to run: {command}') try: retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) retcode.wait() if retcode.returncode==1: - print('Error Occured:') - print(f'Stdout: {retcode.stdout}') - print(f'Stderr: {retcode.stderr}') + logger.critical('Error Occured:') + logger.critical(f'Stdout: {retcode.stdout}') + logger.critical(f'Stderr: {retcode.stderr}') sys.exit() except OSError as e: - print(f'Execution failed: {e}') + logger.critical(f'Execution failed with error: {e}') sys.exit() + else: + logger.debug(f'Funished running command: {command}') else: - print('ERROR: Could not find RT log') + logger.critical('ERROR: Could not find RT log') sys.exit() # def send_to_thread(function_obj, pullreq_obj): @@ -287,29 +361,41 @@ def move_rt_logs(pullreq_obj): # thread, exit = create_threaded_call(function_obj, pullreq_obj, badexit) # return thread, exit -def runInThread(function_obj, pullreq_obj): +def runFunction(function_obj, pullreq_obj): + logger = logging.getLogger("runFunction()") goodexit = None + logger.debug(f'Running command: {function_obj.command}') proc = subprocess.Popen(function_obj.command, shell=True, cwd=pullreq_obj.clone_dir) proc.wait() proc.poll() if proc.returncode == 0: - print(f'Process successful, running callback function') - globals()[function_obj.callback](pullreq_obj) - goodexit = True - else: - print(f'Process failed, skipping callback function') - goodexit = False + logger.debug(f'Command {function_obj.command} successful') + try: + logger.debug(f'Running callback function: {function_obj.callback}') + globals()[function_obj.callback](pullreq_obj) + except: + logger.critical(f'Callback function {function_obj.callback} failed,\ + skipping callback function') + goodexit = False + else: + logger.debug(f'Callback function {function_obj.callback} ran successfully') + goodexit = True return goodexit def get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj): + logger = logging.getLogger(f'get_approved_repos') + logger.debug(f'Start') repo_data = rtdata_obj.get_yaml_subset('repository').values.tolist() + logger.debug(f'Creating list of repository data Repo objects') repo_list = [Repo(name, address, base, machine_obj, ghinterface_obj) for name, address, base in repo_data] if not isinstance(repo_list, list): + logger.warning(f'repo_list not list type') repo_list = list(repo_list) return repo_list def delete_old_pullreq(repo_list, machine_obj): + logger = logging.getLogger(f'delete_old_pullreq()') # Get all PR ID Nums pr_id_list = [str(single_pr.preq_obj.id) for single_repo in repo_list for single_pr in single_repo.pullreq_list] dir_list = next(os.walk(machine_obj.workdir))[1] @@ -318,40 +404,71 @@ def delete_old_pullreq(repo_list, machine_obj): for not_in in not_in_both: if os.path.isdir(machine_obj.workdir+'/'+not_in): command = 'rm -rf '+machine_obj.workdir+'/'+not_in - print(f'Attempting to run: {command}') + logger.info(f'Attempting to run: {command}') try: retcode = subprocess.Popen(command, shell=True) retcode.wait() if retcode.returncode==1: - print('Error Occured:') - print(f'Stdout: {retcode.stdout}') - print(f'Stderr: {retcode.stderr}') + logger.critital('Error Occured:') + logger.critical(f'Stdout: {retcode.stdout}') + logger.critical(f'Stderr: {retcode.stderr}') sys.exit() except OSError as e: - print(f'Execution failed: {e}') + logger.critical(f'Execution failed with error: {e}') sys.exit() else: if os.path.isdir(machine_obj.workdir+'/'+not_in): - print(f'WARNING: Successful command but dir was not removed') + logger.warning(f'Successful command but dir was not removed') + else: + logger.info(f'Command {command} ran successfully') + else: + logger.warning(f'Somehow directory called for removal does not exist, skipping..') + +def wait_for_daemon_threads(thread_list): + logger = logging.getLogger(f'wait_for_daemon_threads()') + logger.debug(f'Starting to wait for all daemon threads to finish before'\ + 'exiting main()') + last_thread_completed = False + while not last_thread_completed: + if len(thread_list) > 0: + logger.debug("Checking Threads") + for thread in thread_list: + logger.debug(f'Checking Thread {thread.name}') + if thread.is_alive(): + logger.debug(f'Thread {thread.name} Alive, continuing') else: - print(f'Command {command} ran successfully') + logger.debug(f'Thread {thread.name} is NOT alive, removing') + thread_list.remove(thread) + logger.debug("Sleeping for 10 seconds") + time.sleep(10) else: - print(f'Somehow directory called for removal does not exist, skipping..') + logger.debug("Thread List Empty, Exiting") + last_thread_completed = True + logger.debug("All deamon threads finished") def main(): - GHUSERNAME = 'BrianCurtis-NOAA' + #SETUP LOGGER + logging.basicConfig(filename="rt_auto.log", filemode='w', level=logging.DEBUG) + logger = logging.getLogger("main") ghinterface_obj = GHInterface() rtdata_obj= RTData() machine_obj = Machine(rtdata_obj) functions_obj = get_approved_functions(rtdata_obj) repo_list = get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj) delete_old_pullreq(repo_list, machine_obj) + thread_list = [] for single_repo in repo_list: - print(f'Processing {single_repo.address} repository') + logger.info(f'Processing {single_repo.address} repository') for single_pr in single_repo.pullreq_list: - print(f'Processing pull request #{single_pr.preq_obj.id}') - process_pr(single_pr, ghinterface_obj, machine_obj, functions_obj) - print(f'Finished processing pull request #{single_pr.preq_obj.id}') + logger.info(f'Sending PR #{single_pr.preq_obj.id} processing off to thread') + thread = threading.Thread(name=f'PR#{single_pr.preq_obj.id}', + target=process_pr, args=(single_pr, ghinterface_obj, + machine_obj, functions_obj), daemon=True) + thread.start() + thread_list.append(thread) + # process_pr(single_pr, ghinterface_obj, machine_obj, functions_obj) + logger.info(f'Finished Sending PR #{single_pr.preq_obj.id} processing off to thread') + wait_for_daemon_threads(thread_list) if __name__ == '__main__': main() From a4ec205cf8efeaf5f671ff7797873013b03198ad Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 19:25:31 +0000 Subject: [PATCH 058/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 55d681fba5..b31ba50dd6 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,3 +1,3 @@ -Fri Jan 29 08:24:24 EST 2021 +Fri Jan 29 14:23:52 EST 2021 Start Regression test From f8701bb8961ecbb431f4660414b8f7f65014e49b Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 19:36:49 +0000 Subject: [PATCH 059/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index b31ba50dd6..61fc4f50e0 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,3 +1,5 @@ -Fri Jan 29 14:23:52 EST 2021 +Fri Jan 29 14:34:10 EST 2021 Start Regression test +Test 1 compile FAIL + From 4bd7304e397d0f0173b3c6539530b8ba47172666 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 19:47:44 +0000 Subject: [PATCH 060/117] typo for ACCNR --- tests/auto/rt_auto.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 0266df3d22..b369454ea5 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -18,7 +18,7 @@ elif [[ $MACHINE_ID = jet.* ]]; then export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages python rt_auto.py elif [[ $MACHINE_ID = gaea.* ]]; then - export AACNR="nggps_emc" # This applies to Brian.Curtis, may need change later + export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages python rt_auto.py From 20fd5b8270497c7f1dca41d79484847f2a1a0797 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 20:21:21 +0000 Subject: [PATCH 061/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 3627 +------------------------- 1 file changed, 2 insertions(+), 3625 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index d4ca1d2d72..2d1b4850b7 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,3628 +1,5 @@ -Tue Jan 26 23:10:00 EST 2021 +Fri Jan 29 15:18:41 EST 2021 Start Regression test +Test 1 compile FAIL -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_ccpp_control PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 017 fv3_ccpp_multigases PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_control_32bit PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_stretched PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 020 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 021 fv3_ccpp_regional_control PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 022 fv3_ccpp_regional_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 023 fv3_ccpp_regional_quilt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_control_debug_prod -Checking test 025 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 025 fv3_ccpp_control_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_stretched_nest_debug_prod -Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 026 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_csawmg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmfq PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_cpt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_gsd PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_rap PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_hrrr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v15p2_prod -Checking test 042 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_prod -Checking test 043 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gocart_clm PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gsd_debug_prod -Checking test 059 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gsd_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_thompson_debug_prod -Checking test 061 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -REGRESSION TEST WAS SUCCESSFUL -Wed Jan 27 00:14:23 EST 2021 -Elapsed time: 01h:04m:24s. Have a nice day! From 7749417d7d83f1db6719429aa5f0bfaca05a2ace Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 14:36:01 -0600 Subject: [PATCH 062/117] Auto: Added Updated RT Log file: tests/RegressionTests_orion.intel.log --- tests/RegressionTests_orion.intel.log | 5321 +------------------------ 1 file changed, 4 insertions(+), 5317 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 4b956d83b8..a2d56c35b0 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Tue Jan 26 20:15:43 CST 2021 +Fri Jan 29 14:20:10 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_387745/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,5319 +70,6 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_prod -Checking test 046 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gocart_clm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_prod -Checking test 069 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_prod -Checking test 070 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restartfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_2threads_prod -Checking test 073 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_decomp_prod -Checking test 074 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_ca_prod -Checking test 076 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_ca PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_control_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_restart_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_controlfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_restartfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_control_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_restart_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_controlfrac_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_restartfrac_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmark_prod -Checking test 085 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_restart_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_restart_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmark_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_bmarkfrac_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_wave_prod -Checking test 094 cpld_control_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - Comparing 20161004.000000.out_grd.glo_1deg .........OK - Comparing 20161004.000000.out_pnt.points .........OK - Comparing 20161004.000000.restart.glo_1deg .........OK -Test 094 cpld_control_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_debug_prod -Checking test 095 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_debugfrac_prod -Checking test 096 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 096 cpld_debugfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_control_cfsr -Checking test 097 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_restart_cfsr -Checking test 098 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_restart_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_control_gefs -Checking test 099 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_control_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_bulk_cfsr -Checking test 100 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_bulk_gefs -Checking test 101 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_bulk_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_mx025_cfsr -Checking test 102 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_mx025_gefs -Checking test 103 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_mx025_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_debug_cfsr -Checking test 104 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 104 datm_debug_cfsr PASS - - REGRESSION TEST WAS SUCCESSFUL -Tue Jan 26 21:30:46 CST 2021 -Elapsed time: 01h:15m:04s. Have a nice day! +Fri Jan 29 14:36:00 CST 2021 +Elapsed time: 00h:15m:50s. Have a nice day! From f890f4600906dc1bc2cfd5f72aca85984a6cbaa5 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 17:05:01 -0500 Subject: [PATCH 063/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 74 +++++++++++++++++++++++++++- 1 file changed, 72 insertions(+), 2 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 2d1b4850b7..f5a6f99bd5 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,5 +1,75 @@ -Fri Jan 29 15:18:41 EST 2021 +Fri Jan 29 16:47:40 EST 2021 Start Regression test -Test 1 compile FAIL +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_26671/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 001 fv3_ccpp_control PASS + + +REGRESSION TEST WAS SUCCESSFUL +Fri Jan 29 17:05:01 EST 2021 +Elapsed time: 00h:17m:21s. Have a nice day! From 4819bc5c908c69bdf471ee81d1295d0287d47883 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 19:06:02 -0500 Subject: [PATCH 064/117] Need extra export for Gaea to work --- tests/auto/rt_auto.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index b369454ea5..5e4e576436 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -18,6 +18,7 @@ elif [[ $MACHINE_ID = jet.* ]]; then export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages python rt_auto.py elif [[ $MACHINE_ID = gaea.* ]]; then + export LOADEDMODULES=$LOADEDMODULES export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages From fe9248da0c394d5767ef7dea5b2272b919bb16a1 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 29 Jan 2021 19:10:33 -0500 Subject: [PATCH 065/117] Bring back the full rt.conf --- tests/rt.conf | 184 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 183 insertions(+), 1 deletion(-) diff --git a/tests/rt.conf b/tests/rt.conf index 2ac3fe1c97..fca90dd15c 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -4,4 +4,186 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | -RUN | fv3_ccpp_control | | fv3 | | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | fv3_ccpp_control | | fv3 | +RUN | fv3_ccpp_decomp | | | +RUN | fv3_ccpp_2threads | | | +RUN | fv3_ccpp_restart | | | fv3_ccpp_control +RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | +RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | +RUN | fv3_ccpp_stochy | | fv3 | +RUN | fv3_ccpp_ca | | fv3 | +RUN | fv3_ccpp_lndp | | fv3 | +# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it +RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_lheatstrg | | fv3 | + +# WW3 not working on Cheyenne in the past, need to check if it works now +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +RUN | fv3_ccpp_multigases | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +RUN | fv3_ccpp_control_32bit | | fv3 | +RUN | fv3_ccpp_stretched | | fv3 | +RUN | fv3_ccpp_stretched_nest | | fv3 | + +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | +RUN | fv3_ccpp_regional_control | | fv3 | +RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control +RUN | fv3_ccpp_regional_quilt | | fv3 | +RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | +#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | +#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +RUN | fv3_ccpp_gfdlmp | | fv3 | +RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | +RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +#RUN | fv3_ccpp_csawmgshoc | | fv3 | +#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | +RUN | fv3_ccpp_csawmg | | fv3 | +RUN | fv3_ccpp_satmedmf | | fv3 | +RUN | fv3_ccpp_satmedmfq | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | +RUN | fv3_ccpp_cpt | | fv3 | +RUN | fv3_ccpp_gsd | | fv3 | +# These two tests crash with NaNs on jet.intel +RUN | fv3_ccpp_rap | - jet.intel | fv3 | +RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | +RUN | fv3_ccpp_thompson | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | | fv3 | +# This test crashes with NaNs on jet.intel +RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 +RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16 | | fv3 | +RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 +RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | + +COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | +# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests +RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | +RUN | fv3_ccpp_gocart_clm | | fv3 | +RUN | fv3_ccpp_gfs_v16_flake | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | + +################################################################################################################################################################################### +# DEBUG tests # +################################################################################################################################################################################### + +# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) +# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 +COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_debug | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | + +COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_gsd_debug | | fv3 | +RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | +RUN | fv3_ccpp_thompson_debug | | fv3 | +RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | +RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | + +################################################################################################################################################################################### +# CPLD tests # +################################################################################################################################################################################### + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart | - wcoss_cray gaea.intel jet.intel | | cpld_control +RUN | cpld_controlfrac | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac + +RUN | cpld_2threads | - wcoss_cray gaea.intel jet.intel | | +RUN | cpld_decomp | - wcoss_cray gaea.intel jet.intel | | +RUN | cpld_satmedmf | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_ca | - wcoss_cray gaea.intel jet.intel | fv3 | + +#12h/36h/48h restart tests +RUN | cpld_control_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c192 +RUN | cpld_controlfrac_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 + +RUN | cpld_control_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 +RUN | cpld_controlfrac_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 + +RUN | cpld_bmark | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmark | - wcoss_cray gaea.intel jet.intel | | cpld_bmark +RUN | cpld_bmarkfrac | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac + +#6h/6h/12h restart test +RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | + +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_debugfrac | - wcoss_cray gaea.intel jet.intel | fv3 | + +################################################################################################################################################################################### +# Data Atmosphere tests # +################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_control_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_restart_cfsr | - wcoss_cray gaea.intel jet.intel | | datm_control_cfsr +RUN | datm_control_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +RUN | datm_bulk_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_bulk_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +RUN | datm_mx025_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_mx025_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_debug_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | From 41f5abf090b267eda30ddf9496942a5065305607 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 1 Feb 2021 13:02:48 +0000 Subject: [PATCH 066/117] Cleanup for PR to ufs-community/ufs-weather-model --- tests/rt.test | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 tests/rt.test diff --git a/tests/rt.test b/tests/rt.test deleted file mode 100644 index 566d13341c..0000000000 --- a/tests/rt.test +++ /dev/null @@ -1,2 +0,0 @@ -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_control | - wcoss_cray gaea.intel jet.intel | fv3 | From 615eb4692f953393c4168f5916747e672c4c1cd2 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 1 Feb 2021 13:03:38 +0000 Subject: [PATCH 067/117] Cleanup for PR to ufs-community/ufs-weather-model retry --- tests/auto/rt_auto.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/auto/rt_auto.yml b/tests/auto/rt_auto.yml index b1da5ce306..ec1494d3fc 100644 --- a/tests/auto/rt_auto.yml +++ b/tests/auto/rt_auto.yml @@ -17,7 +17,7 @@ regexhostname: 'Orion-login-\d.HPC.MsState.Edu' workdir: '/work/noaa/nems/bcurtis/test' baselinedir: '/work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs' - # NOT SUPPORTED + # NOT SUPPORTED... YET # # VENUS # - name: 'wcoss_dell_p3' # regexhostname: 'v\d\d[a-z]\d' @@ -42,9 +42,6 @@ - name: 'ufs-weather-model' address: 'ufs-community/ufs-weather-model' base: 'develop' - - name: 'ufs-weather-model' - address: 'BrianCurtis-NOAA/ufs-weather-model' - base: 'develop' functions: - name: 'RT' command: './tests/rt.sh -e' From 9dee2245a9fd0d244f6a775df4af1dad6c7a6a00 Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Mon, 1 Feb 2021 09:26:33 -0500 Subject: [PATCH 068/117] Delete RegressionTests_neon.intel.log leftovers from testing on personal desktop --- tests/RegressionTests_neon.intel.log | 1369 -------------------------- 1 file changed, 1369 deletions(-) delete mode 100644 tests/RegressionTests_neon.intel.log diff --git a/tests/RegressionTests_neon.intel.log b/tests/RegressionTests_neon.intel.log deleted file mode 100644 index 037b92ba38..0000000000 --- a/tests/RegressionTests_neon.intel.log +++ /dev/null @@ -1,1369 +0,0 @@ -Tue Dec 22 18:09:25 UTC 2020 -Start Regression test - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfdlmp_prod -Checking test 001 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 001 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_prod -Checking test 002 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 002 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_prod -Checking test 003 fv3_ccpp_gfs_v16beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 003 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 004 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 005 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 006 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gsd_prod -Checking test 009 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_thompson_prod -Checking test 010 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_thompson_no_aero_prod -Checking test 011 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_rrfs_v1beta_prod -Checking test 012 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_control_debug_prod -Checking test 015 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 015 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -REGRESSION TEST WAS SUCCESSFUL -Tue Dec 22 18:50:38 UTC 2020 -Elapsed time: 00h:41m:14s. Have a nice day! From 05814776f6382b52ed2ec55f6faf770d073d8dcf Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Mon, 1 Feb 2021 09:27:25 -0500 Subject: [PATCH 069/117] Delete rt.conf.good Leftovers from earlier build --- tests/rt.conf.good | 187 --------------------------------------------- 1 file changed, 187 deletions(-) delete mode 100644 tests/rt.conf.good diff --git a/tests/rt.conf.good b/tests/rt.conf.good deleted file mode 100644 index 198093defb..0000000000 --- a/tests/rt.conf.good +++ /dev/null @@ -1,187 +0,0 @@ -################################################################################################################################################################################### -# PROD tests # -################################################################################################################################################################################### - -COMPILE | SUITES=FV3_GFS_2017 | | fv3 | - -RUN | fv3_ccpp_control | | fv3 | -RUN | fv3_ccpp_decomp | | | -RUN | fv3_ccpp_2threads | | | -RUN | fv3_ccpp_restart | | | fv3_ccpp_control -RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | -RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | -RUN | fv3_ccpp_stochy | | fv3 | -RUN | fv3_ccpp_ca | | fv3 | -RUN | fv3_ccpp_lndp | | fv3 | -# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it -RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_lheatstrg | | fv3 | - -# WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | -RUN | fv3_ccpp_multigases | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | -RUN | fv3_ccpp_control_32bit | | fv3 | -RUN | fv3_ccpp_stretched | | fv3 | -RUN | fv3_ccpp_stretched_nest | | fv3 | - -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | -RUN | fv3_ccpp_regional_control | | fv3 | -RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control -RUN | fv3_ccpp_regional_quilt | | fv3 | -RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | -#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | -#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_control_debug | | fv3 | -RUN | fv3_ccpp_stretched_nest_debug | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | -RUN | fv3_ccpp_gfdlmp | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | -#RUN | fv3_ccpp_csawmgshoc | | fv3 | -#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | -RUN | fv3_ccpp_csawmg | | fv3 | -RUN | fv3_ccpp_satmedmf | | fv3 | -RUN | fv3_ccpp_satmedmfq | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | -RUN | fv3_ccpp_cpt | | fv3 | -RUN | fv3_ccpp_gsd | | fv3 | -# These two tests crash with NaNs on jet.intel -RUN | fv3_ccpp_rap | - jet.intel | fv3 | -RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | -RUN | fv3_ccpp_thompson | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | | fv3 | -# This test crashes with NaNs on jet.intel -RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | | fv3 | -RUN | fv3_ccpp_gfs_v16beta | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_restart | | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_stochy | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | - -COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | -# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests -RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16beta_flake | | fv3 | -RUN | fv3_ccpp_gocart_clm | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_flake | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | - -################################################################################################################################################################################### -# DEBUG tests # -################################################################################################################################################################################### - -# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 -COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta,FV3_GFS_v16beta_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | | fv3 | - -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_gsd_debug | | fv3 | -RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | -RUN | fv3_ccpp_thompson_debug | | fv3 | -RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | - -################################################################################################################################################################################### -# CPLD tests # -################################################################################################################################################################################### - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_control | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart | - wcoss_cray gaea.intel jet.intel | | cpld_control -RUN | cpld_controlfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac - -RUN | cpld_2threads | - wcoss_cray gaea.intel jet.intel | | -RUN | cpld_decomp | - wcoss_cray gaea.intel jet.intel | | -RUN | cpld_satmedmf | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_ca | - wcoss_cray gaea.intel jet.intel | fv3 | - -#12h/36h/48h restart tests -RUN | cpld_control_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c192 -RUN | cpld_controlfrac_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 - -RUN | cpld_control_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 -RUN | cpld_controlfrac_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 - -RUN | cpld_bmark | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmark | - wcoss_cray gaea.intel jet.intel | | cpld_bmark -RUN | cpld_bmarkfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac - -#6h/6h/12h restart test -RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debugfrac | - wcoss_cray gaea.intel jet.intel | fv3 | - -################################################################################################################################################################################### -# Data Atmosphere tests # -################################################################################################################################################################################### - -COMPILE | DATM=Y S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_control_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_restart_cfsr | - wcoss_cray gaea.intel jet.intel | | datm_control_cfsr -RUN | datm_control_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | datm_bulk_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_bulk_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | datm_mx025_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_mx025_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_debug_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | From 1b73087734e4854fe89aa3753584e397009259f3 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 2 Feb 2021 15:35:59 -0600 Subject: [PATCH 070/117] Fixed use of sys.exit and instead raise errors, removed sys import, beginning additions of documentation --- tests/auto/rt_auto.py | 302 +++++++++++++++++++++++------------------- tests/auto/rt_auto.sh | 10 +- 2 files changed, 174 insertions(+), 138 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 826039f062..040e22cf84 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -1,33 +1,47 @@ -# HEADER -# Written by Brian Curtis -# Automation of RT tasks using github cli -from __future__ import print_function +"""Automation of UFS Regression Testing + +This script automates the process of regression testing for code managers +at NOAA-EMC + +The data set required for this code to operate properly is rt_auto.yml: + - Provides all the repository information in which to search through + - Provides all information about the machines this code should be run on + - Provides all acceptable commands to be run on machines +This script should be started through rt_auto.sh so that env vars are set up +prior to start. +""" +from __future__ import print_function from github import Github as gh import datetime import time -import pandas as pd +from pandas import DataFrame import socket import threading import subprocess import re -import sys import yaml import os import logging class RTData: - + ''' + This class provides a storge location for the data from rt_auto.yml as well + as a method to read the data and a method to get a subset of the data + ... + Attributes + ---------- + data: yaml data + a container for the yaml data + ''' def __init__(self): self.logger = logging.getLogger("RTData") - self.DB_FILENAME = 'rt_auto.yml' self.data = self.read_yaml_data() def read_yaml_data(self): self.logger.info(f'Reading in default YAML data') - stream = open(self.DB_FILENAME, 'r') - yaml_data = yaml.load(stream, Loader=yaml.SafeLoader) - stream.close() + with open('rt_auto.yml', 'r') as stream: + yaml_data = yaml.load(stream, Loader=yaml.SafeLoader) self.logger.info(f'Finished reading in YAML data') return yaml_data @@ -35,26 +49,42 @@ def get_yaml_subset(self, keyin): self.logger.info(f'Getting YAML subset: {keyin}') try: yaml_subset = self.data[keyin] - except: - self.logger.critical(f'Unable to get yaml subset: {keyin}. Quitting') - sys.exit() - df = pd.DataFrame.from_dict(yaml_subset) - self.logger.info(f'Finished getting YAML subset {keyin}') - return df + except KeyError as kerror: + self.logger.critical(f'Unable to get yaml subset {keyin} with error: {kerror}') + raise + else: + df = DataFrame.from_dict(yaml_subset) + self.logger.info(f'Finished getting YAML subset {keyin}') + return df class Machine: - + ''' + A class to store information about the machine the code is being run on + ... + + Attributes + --------- + machineid : str + the env var machine id + name : str + the name of the machine + regexhostname : str + a regex string to match with login nodes of the machine to determine name + workdir : str + the directory to perform work in + baselinedir : str + the directory where baselines are stored on the machine + ''' def __init__(self, rtdata_obj): self.logger = logging.getLogger("Machine") - self.rtdata_obj = rtdata_obj - self.get_machine_info() + self.get_machine_info(rtdata_obj) self.machineid = os.environ.get('MACHINE_ID') - def get_machine_info(self): + def get_machine_info(self, rtdata_obj): self.logger.info(f'Getting machine information') hostname = socket.gethostname() self.logger.debug(f'hostname is {hostname}') - machines = self.rtdata_obj.get_yaml_subset('machines') + machines = rtdata_obj.get_yaml_subset('machines') regexmachines = machines['regexhostname'].values for i, mach in enumerate(regexmachines): if re.search(mach, hostname): @@ -72,63 +102,100 @@ def get_machine_info(self): return else: continue - self.logger.critical(f'Hostname:{hostname} does not match approved list. Quitting') - sys.exit() - -class Function: - + self.logger.critical(f'Hostname:{hostname} does not match approved list.') + raise Exception(f'Hostname:{hostname} does not match approved list.') + +class Action: + ''' + This class stores all the information about each action + ... + + Attributes + ---------- + name : str + the name of the action + command : str + the command the action will run on the machine + callback : str + the function to run once the command has completed + ''' def __init__(self, name, command, callback): - self.logger = logging.getLogger("Function") + self.logger = logging.getLogger("Action") self.name = name self.command = command self.callback = callback - self.logger.debug(f'Function object created') + self.logger.debug(f'Action object created') self.logger.debug(f'self.name: {self.name}\n\ self.command: {self.command}\n\ self.callback: {self.callback}') - def verify_name(self, comparable): - self.logger.debug(f'Verifying name: {comparable}') - if re.match(self.name.lower(), comparable.lower()): - self.logger.debug(f'Match found') - return True - else: - self.logger.debug(f'Not a match') - return False - - def verify_command(self, comparable): - self.logger.debug(f'Verifying command: {comparable}') - if re.match(self.command.lower(), comparable.lower()): - self.logger.debug(f'Match found') - return True + def verify_item(self, item, comparable): + if item == "name": + if re.match(self.name.lower(), comparable.lower()): + self.logger.debug(f'Name match found') + return True + elif item == "command": + if re.match(self.name.lower(), comparable.lower()): + self.logger.debug(f'Command match found') + return True else: self.logger.debug(f'Not a match') return False + # def verify_name(self, comparable): + # self.logger.debug(f'Verifying name: {comparable}') + # if re.match(self.name.lower(), comparable.lower()): + # self.logger.debug(f'Match found') + # return True + # else: + # self.logger.debug(f'Not a match') + # return False + # + # def verify_command(self, comparable): + # self.logger.debug(f'Verifying command: {comparable}') + # if re.match(self.command.lower(), comparable.lower()): + # self.logger.debug(f'Match found') + # return True + # else: + # self.logger.debug(f'Not a match') + # return False class GHInterface: - - def __init__(self): + ''' + This class stores information for communicating with GitHub + ... + + Attributes + ---------- + GHACCESSTOKEN : str + API token to autheticate with GitHub + GHUSERNAME : str + UserName connected to GHACCESSTOKEN + client : pyGitHub communication object + The connection to GitHub to make API requests + ''' + def __init__(self) -> None: self.logger = logging.getLogger("GHInterface") self.get_access_token() self.client = gh(self.GHACCESSTOKEN) def get_access_token(self): - if os.path.exists('accesstoken.txt'): - f = open('accesstoken.txt', 'rb') - filedata = f.read() - f.close() + try: + with open('accesstoken.txt', 'rb') as f: + filedata = f.read() + except FileNotFoundError: + ERROR_MESSAGE = f'Please create a file "accesstoken.txt" that'\ + ' contains your GitHub API Token on the first line, and GitHub'\ + ' Username on the second line.\nMake sure to set permission'\ + ' so others can not read it (400)' + self.logger.critical(ERROR_MESSAGE) + raise FileNotFoundError(ERROR_MESSAGE) + else: filedata = str(filedata)[2:-1].split('\\n') - self.GHACCESSTOKEN = filedata[0] self.GHUSERNAME = filedata[1] self.logger.debug(f'GHACCESSTOKEN is {self.GHACCESSTOKEN}') self.logger.debug(f'GHUSERNAME is {self.GHUSERNAME}') - else: - self.logger.critical(f'Please create a file "accesstoken.txt" that'\ - ' contains your GitHub API Token on the first line, and GitHub'\ - ' Username on the second line.\nMake sure to set permission'\ - ' so others can not read it (400)') - sys.exit() + # REPO STUFF class Repo: @@ -153,7 +220,7 @@ def get_GHrepo_object(self): self.ghrepo = self.ghinterface_obj.client.get_repo(self.address) except Exception as e: self.logger.critical(f'Failed to get repo object with error {e}') - sys.exit() + raise Exception(f'Failed to get repo object with error {e}') def get_repo_preqs(self): self.logger.debug(f'Creating list of PullReq objects') @@ -162,7 +229,7 @@ def get_repo_preqs(self): preqs = self.ghrepo.get_pulls(state='open', sort='created', base=self.base) except Exception as e: self.logger.critical(f'Failed to get pull object with error {e}') - sys.exit() + raise Exception(f'Failed to get pull object with error {e}') for preq in preqs: self.pullreq_list.append(PullReq(self, preq, self.machine_obj)) @@ -210,19 +277,19 @@ def __init__(self, name, machine): self.machine = machine self.logger.debug(f'self.name: {self.name}\n\ self.machine: {self.machine} ') - self.function_obj = None + self.action_obj = None - def add_function(self, function_obj): - self.logger.debug("Adding function Object: {function_obj}") - self.function_obj = function_obj + def add_function(self, action_obj): + self.logger.debug("Adding function Object: {action_obj}") + self.action_obj = action_obj def is_approved(self, machine_obj, functions): self.logger.debug("Checking if PRLabel is approved") if re.match(self.machine.lower(), machine_obj.name.lower()): - for function_obj in functions: - if function_obj.verify_name(self.name): + for action_obj in functions: + if action_obj.verify_item('name', self.name): self.logger.debug(f'Approved label: "{self.name}-{self.machine}"') - self.add_function(function_obj) + self.add_function(action_obj) return True else: self.logger.warning(f'Label not approved. Name: {self.name} not on approved list.') @@ -236,8 +303,8 @@ def get_approved_functions(rtdata_obj): logger.debug(f'Start of get_approved_functions()') function_data = rtdata_obj.get_yaml_subset('functions').\ values.tolist() - logger.debug("Sending function data off to Function objects") - function_list = [Function(name,command,callback_fnc) + logger.debug("Sending function data off to Action objects") + function_list = [Action(name,command,callback_fnc) for name,command,callback_fnc in function_data] logger.debug(f'End of get_approved_functions()') return function_list @@ -251,25 +318,16 @@ def clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj): ['mkdir -p "'+pullreq_obj.repo_dir_str+'"', machine_obj.workdir], ['git clone -b '+pullreq_obj.branch+' '+git_url_w_login, pullreq_obj.repo_dir_str], ['git submodule update --init --recursive', pullreq_obj.repo_dir_str+'/'+pullreq_obj.repo_name] - # ['module use modulefiles/{} && module load fv3'.format(machine_obj.machineid), pullreq_obj.repo_dir_str+'/'+pullreq_obj.repo_name] ] for command, in_cwd in create_repo_commands: - logger.debug(f'Attempting to run: {command}'.format(command)) - try: - retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) - retcode.wait() - if retcode.returncode==1: - logger.critical('Error Occured:') - logger.critical(f'Stdout: {retcode.stdout}') - logger.critical(f'Stderr: {retcode.stderr}') - sys.exit() - except OSError as e: - logger.critical(f'Execution failed with error: {e}') - sys.exit() - else: - logger.debug(f'Finished Cloning {git_url_w_login}') + logger.info(f'Attempting to run: {command}') + retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) + retcode.wait() + assert(retcode.returncode==0), f'{command} returned with non-zero exit' + logger.info(f'Finished running: {command}') + logger.debug(f'Finished Cloning {git_url_w_login}') pullreq_obj.add_clone_dir(pullreq_obj.repo_dir_str+"/"+pullreq_obj.repo_name) def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): @@ -279,19 +337,14 @@ def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): if prlabel.is_approved(machine_obj, functions): logger.debug(f'Removing Label Auto-{prlabel.name}-{prlabel.machine}') pullreq_obj.preq_obj.remove_from_labels(f'Auto-{prlabel.name}-{prlabel.machine}') + clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj) try: - clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj) + goodexit = runFunction(prlabel.action_obj, pullreq_obj) except Exception as e: - logger.critical(f'Error cloning repo: {pullreq_obj.git_url}') - sys.exit() - try: - goodexit = runFunction(prlabel.function_obj, pullreq_obj) - # thread, badexit = send_to_thread(prlabel.function_obj, pullreq_obj) - except Exception as e: - logger.critical(f'ERROR RUNNING RT {prlabel.function_obj.command} with error: {e}') + logger.critical(f'ERROR RUNNING RT {prlabel.action_obj.command} with error: {e}') logger.debug(f'Adding back label Auto-{prlabel.name}-{prlabel.machine}') pullreq_obj.preq_obj.add_to_labels(f'Auto-{prlabel.name}-{prlabel.machine}') - sys.exit() + raise else: if goodexit == False: logger.debug(f'runFunction exited with error') @@ -317,26 +370,18 @@ def move_rt_logs(pullreq_obj): ] for command, in_cwd in move_rt_commands: logger.debug(f'Attempting to run: {command}') - try: - retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) - retcode.wait() - if retcode.returncode==1: - logger.critical('Error Occured:') - logger.critical(f'Stdout: {retcode.stdout}') - logger.critical(f'Stderr: {retcode.stderr}') - sys.exit() - except OSError as e: - logger.critical(f'Execution failed with error: {e}') - sys.exit() - else: - logger.debug(f'Funished running command: {command}') + retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) + retcode.wait() + retcode.poll() + assert(retcode.returncode==0), f'{command} returned with non-zero number' + logger.debug(f'Funished running command: {command}') else: - logger.critical('ERROR: Could not find RT log') - sys.exit() + logger.critical('Could not find RT log') + raise FileNotFoundError('Could not find RT log') -# def send_to_thread(function_obj, pullreq_obj): +# def send_to_thread(action_obj, pullreq_obj): # badexit = False -# def create_threaded_call(function_obj, pullreq_obj, badexit): +# def create_threaded_call(action_obj, pullreq_obj, badexit): # # def runInThread(incallback, incommand, cwd_in, badexit): # print(f'cwd_in is:{cwd_in}') @@ -354,31 +399,31 @@ def move_rt_logs(pullreq_obj): # return # # thread = threading.Thread(target=runInThread, -# args=(function_obj.callback, function_obj.command, pullreq_obj.clone_dir, badexit)) +# args=(action_obj.callback, action_obj.command, pullreq_obj.clone_dir, badexit)) # thread.start() # print(f'ouside badexit is {badexit}') # return thread, badexit # returns immediately after the thread starts -# thread, exit = create_threaded_call(function_obj, pullreq_obj, badexit) +# thread, exit = create_threaded_call(action_obj, pullreq_obj, badexit) # return thread, exit -def runFunction(function_obj, pullreq_obj): +def runFunction(action_obj, pullreq_obj): logger = logging.getLogger("runFunction()") goodexit = None - logger.debug(f'Running command: {function_obj.command}') - proc = subprocess.Popen(function_obj.command, shell=True, cwd=pullreq_obj.clone_dir) + logger.debug(f'Running command: {action_obj.command}') + proc = subprocess.Popen(action_obj.command, shell=True, cwd=pullreq_obj.clone_dir) proc.wait() proc.poll() if proc.returncode == 0: - logger.debug(f'Command {function_obj.command} successful') + logger.debug(f'Command {action_obj.command} successful') try: - logger.debug(f'Running callback function: {function_obj.callback}') - globals()[function_obj.callback](pullreq_obj) + logger.debug(f'Running callback function: {action_obj.callback}') + globals()[action_obj.callback](pullreq_obj) except: - logger.critical(f'Callback function {function_obj.callback} failed,\ + logger.critical(f'Callback function {action_obj.callback} failed,\ skipping callback function') goodexit = False else: - logger.debug(f'Callback function {function_obj.callback} ran successfully') + logger.debug(f'Callback function {action_obj.callback} ran successfully') goodexit = True return goodexit @@ -405,22 +450,13 @@ def delete_old_pullreq(repo_list, machine_obj): if os.path.isdir(machine_obj.workdir+'/'+not_in): command = 'rm -rf '+machine_obj.workdir+'/'+not_in logger.info(f'Attempting to run: {command}') - try: - retcode = subprocess.Popen(command, shell=True) - retcode.wait() - if retcode.returncode==1: - logger.critital('Error Occured:') - logger.critical(f'Stdout: {retcode.stdout}') - logger.critical(f'Stderr: {retcode.stderr}') - sys.exit() - except OSError as e: - logger.critical(f'Execution failed with error: {e}') - sys.exit() + retcode = subprocess.Popen(command, shell=True) + retcode.wait() + assert(retcode.returncode==0), f'{command} exited with non-zero number' + if os.path.isdir(machine_obj.workdir+'/'+not_in): + logger.warning(f'Successful command but dir was not removed') else: - if os.path.isdir(machine_obj.workdir+'/'+not_in): - logger.warning(f'Successful command but dir was not removed') - else: - logger.info(f'Command {command} ran successfully') + logger.info(f'Command {command} ran successfully') else: logger.warning(f'Somehow directory called for removal does not exist, skipping..') diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 5e4e576436..9a3c37adfb 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -8,25 +8,25 @@ export MACHINE_ID=$MACHINE_ID if [[ $MACHINE_ID = hera.* ]]; then export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages - python rt_auto.py elif [[ $MACHINE_ID = orion.* ]]; then export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages - python rt_auto.py elif [[ $MACHINE_ID = jet.* ]]; then export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin:$PATH export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages - python rt_auto.py elif [[ $MACHINE_ID = gaea.* ]]; then export LOADEDMODULES=$LOADEDMODULES export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages - python rt_auto.py elif [[ $MACHINE_ID = cheyenne.* ]]; then export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages - python rt_auto.py else echo "No Python Path for this machine. automated RT not starting" + exit 1 fi + +python rt_auto.py + +exit 0 From 1f3ae9f3fb2be102704779cdd3f29a83abcbe076 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 3 Feb 2021 14:46:01 -0600 Subject: [PATCH 071/117] Fixes and temp changes for testing --- tests/auto/rt_auto.py | 56 +++++-------- tests/auto/rt_auto.yml | 3 + tests/rt.conf | 182 ----------------------------------------- 3 files changed, 22 insertions(+), 219 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 040e22cf84..b858bbc886 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -129,18 +129,25 @@ def __init__(self, name, command, callback): self.command: {self.command}\n\ self.callback: {self.callback}') + # def verify_item(self, item, comparable): + # if item == "name": + # if re.match(self.name.lower(), comparable.lower()): + # self.logger.debug(f'Name match found') + # return True + # elif item == "command": + # if re.match(self.name.lower(), comparable.lower()): + # self.logger.debug(f'Command match found') + # return True + # else: + # self.logger.debug(f'Not a match') + # return False def verify_item(self, item, comparable): - if item == "name": - if re.match(self.name.lower(), comparable.lower()): - self.logger.debug(f'Name match found') - return True - elif item == "command": - if re.match(self.name.lower(), comparable.lower()): - self.logger.debug(f'Command match found') - return True + if item == 'name': + return True if re.match(self.name.lower(), comparable.lower()) else False + elif item == 'command': + return True if re.match(self.command.lower(), comparable.lower()) else False else: - self.logger.debug(f'Not a match') - return False + raise KeyError(f'{item} not verifiable') # def verify_name(self, comparable): # self.logger.debug(f'Verifying name: {comparable}') # if re.match(self.name.lower(), comparable.lower()): @@ -324,6 +331,7 @@ def clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj): logger.info(f'Attempting to run: {command}') retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) retcode.wait() + retcode.poll() assert(retcode.returncode==0), f'{command} returned with non-zero exit' logger.info(f'Finished running: {command}') @@ -379,33 +387,6 @@ def move_rt_logs(pullreq_obj): logger.critical('Could not find RT log') raise FileNotFoundError('Could not find RT log') -# def send_to_thread(action_obj, pullreq_obj): -# badexit = False -# def create_threaded_call(action_obj, pullreq_obj, badexit): -# -# def runInThread(incallback, incommand, cwd_in, badexit): -# print(f'cwd_in is:{cwd_in}') -# proc = subprocess.Popen(incommand, shell=True, cwd=cwd_in) -# proc.wait() -# proc.poll() -# if proc.returncode == 0: -# print(f'Process successful, running callback function') -# globals()[incallback](pullreq_obj) -# else: -# print(f'badexit is {badexit}') -# print(f'Process failed, skipping callback function') -# badexit = True -# print(f'new badexit is {badexit}') -# return -# -# thread = threading.Thread(target=runInThread, -# args=(action_obj.callback, action_obj.command, pullreq_obj.clone_dir, badexit)) -# thread.start() -# print(f'ouside badexit is {badexit}') -# return thread, badexit # returns immediately after the thread starts -# thread, exit = create_threaded_call(action_obj, pullreq_obj, badexit) -# return thread, exit - def runFunction(action_obj, pullreq_obj): logger = logging.getLogger("runFunction()") goodexit = None @@ -452,6 +433,7 @@ def delete_old_pullreq(repo_list, machine_obj): logger.info(f'Attempting to run: {command}') retcode = subprocess.Popen(command, shell=True) retcode.wait() + retcode.poll() assert(retcode.returncode==0), f'{command} exited with non-zero number' if os.path.isdir(machine_obj.workdir+'/'+not_in): logger.warning(f'Successful command but dir was not removed') diff --git a/tests/auto/rt_auto.yml b/tests/auto/rt_auto.yml index ec1494d3fc..bf876168a7 100644 --- a/tests/auto/rt_auto.yml +++ b/tests/auto/rt_auto.yml @@ -42,6 +42,9 @@ - name: 'ufs-weather-model' address: 'ufs-community/ufs-weather-model' base: 'develop' + - name: 'ufs-weather-model' + address: 'BrianCurtis-NOAA/ufs-weather-model' + base: 'develop' functions: - name: 'RT' command: './tests/rt.sh -e' diff --git a/tests/rt.conf b/tests/rt.conf index fca90dd15c..f9d44dbc8e 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -5,185 +5,3 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_ccpp_control | | fv3 | -RUN | fv3_ccpp_decomp | | | -RUN | fv3_ccpp_2threads | | | -RUN | fv3_ccpp_restart | | | fv3_ccpp_control -RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | -RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | -RUN | fv3_ccpp_stochy | | fv3 | -RUN | fv3_ccpp_ca | | fv3 | -RUN | fv3_ccpp_lndp | | fv3 | -# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it -RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_lheatstrg | | fv3 | - -# WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | -RUN | fv3_ccpp_multigases | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | -RUN | fv3_ccpp_control_32bit | | fv3 | -RUN | fv3_ccpp_stretched | | fv3 | -RUN | fv3_ccpp_stretched_nest | | fv3 | - -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | -RUN | fv3_ccpp_regional_control | | fv3 | -RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control -RUN | fv3_ccpp_regional_quilt | | fv3 | -RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | -#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | -#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_control_debug | | fv3 | -RUN | fv3_ccpp_stretched_nest_debug | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | -RUN | fv3_ccpp_gfdlmp | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | -#RUN | fv3_ccpp_csawmgshoc | | fv3 | -#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | -RUN | fv3_ccpp_csawmg | | fv3 | -RUN | fv3_ccpp_satmedmf | | fv3 | -RUN | fv3_ccpp_satmedmfq | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | -RUN | fv3_ccpp_cpt | | fv3 | -RUN | fv3_ccpp_gsd | | fv3 | -# These two tests crash with NaNs on jet.intel -RUN | fv3_ccpp_rap | - jet.intel | fv3 | -RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | -RUN | fv3_ccpp_thompson | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | | fv3 | -# This test crashes with NaNs on jet.intel -RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | -# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 -RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16 | | fv3 | -RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 -RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | - -COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | -# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests -RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | -RUN | fv3_ccpp_gocart_clm | | fv3 | -RUN | fv3_ccpp_gfs_v16_flake | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | - -################################################################################################################################################################################### -# DEBUG tests # -################################################################################################################################################################################### - -# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 -COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_debug | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | - -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_gsd_debug | | fv3 | -RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | -RUN | fv3_ccpp_thompson_debug | | fv3 | -RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | - -################################################################################################################################################################################### -# CPLD tests # -################################################################################################################################################################################### - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_control | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart | - wcoss_cray gaea.intel jet.intel | | cpld_control -RUN | cpld_controlfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac - -RUN | cpld_2threads | - wcoss_cray gaea.intel jet.intel | | -RUN | cpld_decomp | - wcoss_cray gaea.intel jet.intel | | -RUN | cpld_satmedmf | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_ca | - wcoss_cray gaea.intel jet.intel | fv3 | - -#12h/36h/48h restart tests -RUN | cpld_control_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c192 -RUN | cpld_controlfrac_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 - -RUN | cpld_control_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 -RUN | cpld_controlfrac_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 - -RUN | cpld_bmark | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmark | - wcoss_cray gaea.intel jet.intel | | cpld_bmark -RUN | cpld_bmarkfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac - -#6h/6h/12h restart test -RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debugfrac | - wcoss_cray gaea.intel jet.intel | fv3 | - -################################################################################################################################################################################### -# Data Atmosphere tests # -################################################################################################################################################################################### - -COMPILE | DATM=Y S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_control_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_restart_cfsr | - wcoss_cray gaea.intel jet.intel | | datm_control_cfsr -RUN | datm_control_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | datm_bulk_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_bulk_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | datm_mx025_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_mx025_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_debug_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | From 2aff54b1e49ed7bef51ba4ef6cde923e45e613b8 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 3 Feb 2021 15:04:07 -0600 Subject: [PATCH 072/117] Auto: Added Updated RT Log file: tests/RegressionTests_orion.intel.log --- tests/RegressionTests_orion.intel.log | 5321 +------------------------ 1 file changed, 4 insertions(+), 5317 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index a9a90c26bb..5bf49e66f0 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Jan 28 19:26:32 CST 2021 +Wed Feb 3 14:48:19 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_112343/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,5319 +70,6 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_prod -Checking test 046 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_restart_prod -Checking test 047 fv3_ccpp_gfs_v16_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gocart_clm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_flake_prod -Checking test 055 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_prod -Checking test 069 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_prod -Checking test 070 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restartfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_2threads_prod -Checking test 073 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_decomp_prod -Checking test 074 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_ca_prod -Checking test 076 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_ca PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_control_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_restart_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_controlfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_restartfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_control_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_restart_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_controlfrac_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_restartfrac_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmark_prod -Checking test 085 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_restart_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_restart_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmark_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_bmarkfrac_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_wave_prod -Checking test 094 cpld_control_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - Comparing 20161004.000000.out_grd.glo_1deg .........OK - Comparing 20161004.000000.out_pnt.points .........OK - Comparing 20161004.000000.restart.glo_1deg .........OK -Test 094 cpld_control_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_debug_prod -Checking test 095 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_debugfrac_prod -Checking test 096 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 096 cpld_debugfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_control_cfsr -Checking test 097 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_restart_cfsr -Checking test 098 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_restart_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_control_gefs -Checking test 099 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_control_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_bulk_cfsr -Checking test 100 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_bulk_gefs -Checking test 101 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_bulk_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_mx025_cfsr -Checking test 102 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_mx025_gefs -Checking test 103 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_mx025_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_debug_cfsr -Checking test 104 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 104 datm_debug_cfsr PASS - - REGRESSION TEST WAS SUCCESSFUL -Thu Jan 28 20:39:50 CST 2021 -Elapsed time: 01h:13m:19s. Have a nice day! +Wed Feb 3 15:04:07 CST 2021 +Elapsed time: 00h:15m:49s. Have a nice day! From f641839cdb4ab8e3a72d2ffcea1ba469219f6984 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 3 Feb 2021 15:55:17 -0600 Subject: [PATCH 073/117] Removed dependency of pandas, added a KeyboardInterrupt catch to replace lebels of incompleted RT's --- tests/auto/rt_auto.py | 83 +++++++++++++----------------------------- tests/auto/rt_auto.yml | 7 ---- 2 files changed, 25 insertions(+), 65 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index b858bbc886..1ed28361fa 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -15,7 +15,6 @@ from github import Github as gh import datetime import time -from pandas import DataFrame import socket import threading import subprocess @@ -53,9 +52,8 @@ def get_yaml_subset(self, keyin): self.logger.critical(f'Unable to get yaml subset {keyin} with error: {kerror}') raise else: - df = DataFrame.from_dict(yaml_subset) self.logger.info(f'Finished getting YAML subset {keyin}') - return df + return yaml_subset class Machine: ''' @@ -85,15 +83,13 @@ def get_machine_info(self, rtdata_obj): hostname = socket.gethostname() self.logger.debug(f'hostname is {hostname}') machines = rtdata_obj.get_yaml_subset('machines') - regexmachines = machines['regexhostname'].values - for i, mach in enumerate(regexmachines): - if re.search(mach, hostname): + for i, mach in enumerate(machines): + if re.search(mach['regexhostname'], hostname): self.logger.info(f'{hostname} is an approved machine') - mach_db_info = machines.iloc[i] - self.name = mach_db_info['name'] - self.regexhostname = mach_db_info['regexhostname'] - self.workdir = mach_db_info['workdir'] - self.baselinedir = mach_db_info['baselinedir'] + self.name = mach['name'] + self.regexhostname = mach['regexhostname'] + self.workdir = mach['workdir'] + self.baselinedir = mach['baselinedir'] self.logger.debug(f'self.name: {self.name}\n\ self.regexhostname: {self.regexhostname}\n\ self.workdir: {self.workdir}\n\ @@ -129,42 +125,9 @@ def __init__(self, name, command, callback): self.command: {self.command}\n\ self.callback: {self.callback}') - # def verify_item(self, item, comparable): - # if item == "name": - # if re.match(self.name.lower(), comparable.lower()): - # self.logger.debug(f'Name match found') - # return True - # elif item == "command": - # if re.match(self.name.lower(), comparable.lower()): - # self.logger.debug(f'Command match found') - # return True - # else: - # self.logger.debug(f'Not a match') - # return False - def verify_item(self, item, comparable): - if item == 'name': - return True if re.match(self.name.lower(), comparable.lower()) else False - elif item == 'command': - return True if re.match(self.command.lower(), comparable.lower()) else False - else: - raise KeyError(f'{item} not verifiable') - # def verify_name(self, comparable): - # self.logger.debug(f'Verifying name: {comparable}') - # if re.match(self.name.lower(), comparable.lower()): - # self.logger.debug(f'Match found') - # return True - # else: - # self.logger.debug(f'Not a match') - # return False - # - # def verify_command(self, comparable): - # self.logger.debug(f'Verifying command: {comparable}') - # if re.match(self.command.lower(), comparable.lower()): - # self.logger.debug(f'Match found') - # return True - # else: - # self.logger.debug(f'Not a match') - # return False + def verify(self, item, comparable): + return True if re.match(getattr(self, item).lower(), comparable.lower()) else False + class GHInterface: ''' @@ -294,7 +257,7 @@ def is_approved(self, machine_obj, functions): self.logger.debug("Checking if PRLabel is approved") if re.match(self.machine.lower(), machine_obj.name.lower()): for action_obj in functions: - if action_obj.verify_item('name', self.name): + if action_obj.verify('name', self.name): self.logger.debug(f'Approved label: "{self.name}-{self.machine}"') self.add_function(action_obj) return True @@ -308,11 +271,10 @@ def is_approved(self, machine_obj, functions): def get_approved_functions(rtdata_obj): logger = logging.getLogger("get_approved_functions()") logger.debug(f'Start of get_approved_functions()') - function_data = rtdata_obj.get_yaml_subset('functions').\ - values.tolist() + function_data = rtdata_obj.get_yaml_subset('functions') logger.debug("Sending function data off to Action objects") - function_list = [Action(name,command,callback_fnc) - for name,command,callback_fnc in function_data] + function_list = [Action(data['name'],data['command'],data['callback_fnc']) + for data in function_data] logger.debug(f'End of get_approved_functions()') return function_list @@ -343,11 +305,15 @@ def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): logger.debug(f'Start') for prlabel in pullreq_obj.labels: if prlabel.is_approved(machine_obj, functions): - logger.debug(f'Removing Label Auto-{prlabel.name}-{prlabel.machine}') - pullreq_obj.preq_obj.remove_from_labels(f'Auto-{prlabel.name}-{prlabel.machine}') - clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj) try: + logger.debug(f'Removing Label Auto-{prlabel.name}-{prlabel.machine}') + pullreq_obj.preq_obj.remove_from_labels(f'Auto-{prlabel.name}-{prlabel.machine}') + clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj) goodexit = runFunction(prlabel.action_obj, pullreq_obj) + except KeyboardInterrupt: + print(f'KEY BOAR DINTERRUPT') + pullreq_obj.preq_obj.add_to_labels(f'Auto-{prlabel.name}-{prlabel.machine}') + raise except Exception as e: logger.critical(f'ERROR RUNNING RT {prlabel.action_obj.command} with error: {e}') logger.debug(f'Adding back label Auto-{prlabel.name}-{prlabel.machine}') @@ -411,10 +377,11 @@ def runFunction(action_obj, pullreq_obj): def get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj): logger = logging.getLogger(f'get_approved_repos') logger.debug(f'Start') - repo_data = rtdata_obj.get_yaml_subset('repository').values.tolist() + repo_data = rtdata_obj.get_yaml_subset('repository') logger.debug(f'Creating list of repository data Repo objects') - repo_list = [Repo(name, address, base, machine_obj, ghinterface_obj) - for name, address, base in repo_data] + repo_list = [Repo(data['name'], data['address'], data['base'], \ + machine_obj, ghinterface_obj) \ + for data in repo_data] if not isinstance(repo_list, list): logger.warning(f'repo_list not list type') repo_list = list(repo_list) diff --git a/tests/auto/rt_auto.yml b/tests/auto/rt_auto.yml index bf876168a7..72a73624d0 100644 --- a/tests/auto/rt_auto.yml +++ b/tests/auto/rt_auto.yml @@ -1,6 +1,5 @@ --- machines: - #RDHPCS - name: 'hera' regexhostname: 'hfe\d\d' workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis/test' @@ -42,13 +41,7 @@ - name: 'ufs-weather-model' address: 'ufs-community/ufs-weather-model' base: 'develop' - - name: 'ufs-weather-model' - address: 'BrianCurtis-NOAA/ufs-weather-model' - base: 'develop' functions: - name: 'RT' command: './tests/rt.sh -e' callback_fnc: 'move_rt_logs' - # - name: 'BL' - # command: './rt.sh -cef' - # callback_fnc: '' From 9bf5469cf90c6ba66fb1f8541473dd9e141b2d2a Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 3 Feb 2021 16:09:33 -0600 Subject: [PATCH 074/117] Bringing back upstream rt.conf and RegressionTest from Orion --- tests/RegressionTests_orion.intel.log | 5321 ++++++++++++++++++++++++- tests/rt.conf | 182 + 2 files changed, 5499 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 5bf49e66f0..a9a90c26bb 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Wed Feb 3 14:48:19 CST 2021 +Thu Jan 28 19:26:32 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_112343/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,6 +70,5319 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_decomp_prod +Checking test 002 fv3_ccpp_decomp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 002 fv3_ccpp_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 003 fv3_ccpp_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 004 fv3_ccpp_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_read_inc_prod +Checking test 005 fv3_ccpp_read_inc results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 005 fv3_ccpp_read_inc PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 007 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_stochy PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_ca PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 015 fv3_ccpp_iau PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_lheatstrg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_prod +Checking test 017 fv3_ccpp_gfdlmprad results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 017 fv3_ccpp_gfdlmprad PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 018 fv3_ccpp_gfdlmprad_atmwav PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_nemsio_c768_prod +Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf006.nemsio .........OK + Comparing dynf006.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing out_grd.glo_10m .........OK + Comparing out_grd.ant_9km .........OK + Comparing out_grd.aoc_9km .........OK +Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_multigases_prod +Checking test 020 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 020 fv3_ccpp_multigases PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_control_32bit_prod +Checking test 021 fv3_ccpp_control_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 021 fv3_ccpp_control_32bit PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stretched_prod +Checking test 022 fv3_ccpp_stretched results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 022 fv3_ccpp_stretched PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stretched_nest_prod +Checking test 023 fv3_ccpp_stretched_nest results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.nest02.tile7.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 023 fv3_ccpp_stretched_nest PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_control_prod +Checking test 024 fv3_ccpp_regional_control results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 024 fv3_ccpp_regional_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_restart_prod +Checking test 025 fv3_ccpp_regional_restart results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK +Test 025 fv3_ccpp_regional_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_quilt_prod +Checking test 026 fv3_ccpp_regional_quilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 026 fv3_ccpp_regional_quilt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_control_debug_prod +Checking test 028 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 028 fv3_ccpp_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stretched_nest_debug_prod +Checking test 029 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 029 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmp_prod +Checking test 030 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 030 fv3_ccpp_gfdlmp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 031 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 032 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_csawmg_prod +Checking test 033 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 033 fv3_ccpp_csawmg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_satmedmf_prod +Checking test 034 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 034 fv3_ccpp_satmedmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_satmedmfq_prod +Checking test 035 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 035 fv3_ccpp_satmedmfq PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmp_32bit_prod +Checking test 036 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 036 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_cpt_prod +Checking test 038 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 038 fv3_ccpp_cpt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gsd_prod +Checking test 039 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 039 fv3_ccpp_gsd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_rap_prod +Checking test 040 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 040 fv3_ccpp_rap PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_hrrr_prod +Checking test 041 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 041 fv3_ccpp_hrrr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_prod +Checking test 042 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 042 fv3_ccpp_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_no_aero_prod +Checking test 043 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 043 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_rrfs_v1beta_prod +Checking test 044 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 044 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_prod +Checking test 045 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_prod +Checking test 046 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_restart_prod +Checking test 047 fv3_ccpp_gfs_v16_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 047 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_stochy_prod +Checking test 048 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfsv16_csawmg_prod +Checking test 052 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 052 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 053 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gocart_clm_prod +Checking test 054 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 054 fv3_ccpp_gocart_clm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_flake_prod +Checking test 055 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 055 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 058 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 059 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gsd_debug_prod +Checking test 062 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 062 fv3_ccpp_gsd_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 063 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_debug_prod +Checking test 064 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 064 fv3_ccpp_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 065 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 066 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_prod +Checking test 069 cpld_control results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 069 cpld_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_prod +Checking test 070 cpld_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 070 cpld_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_prod +Checking test 071 cpld_controlfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 071 cpld_controlfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_prod +Checking test 072 cpld_restartfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 072 cpld_restartfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_2threads_prod +Checking test 073 cpld_2threads results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 073 cpld_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_decomp_prod +Checking test 074 cpld_decomp results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 074 cpld_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_satmedmf_prod +Checking test 075 cpld_satmedmf results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 075 cpld_satmedmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_ca_prod +Checking test 076 cpld_ca results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 076 cpld_ca PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_c192_prod +Checking test 077 cpld_control_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 077 cpld_control_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_c192_prod +Checking test 078 cpld_restart_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 078 cpld_restart_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_c192_prod +Checking test 079 cpld_controlfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 079 cpld_controlfrac_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_c192_prod +Checking test 080 cpld_restartfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 080 cpld_restartfrac_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_c384_prod +Checking test 081 cpld_control_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 081 cpld_control_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_c384_prod +Checking test 082 cpld_restart_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 082 cpld_restart_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_c384_prod +Checking test 083 cpld_controlfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 083 cpld_controlfrac_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_c384_prod +Checking test 084 cpld_restartfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 084 cpld_restartfrac_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmark_prod +Checking test 085 cpld_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 085 cpld_bmark PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmark_prod +Checking test 086 cpld_restart_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 086 cpld_restart_bmark PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_prod +Checking test 087 cpld_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 087 cpld_bmarkfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmarkfrac_prod +Checking test 088 cpld_restart_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 088 cpld_restart_bmarkfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_v16_prod +Checking test 089 cpld_bmarkfrac_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 089 cpld_bmarkfrac_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmarkfrac_v16_prod +Checking test 090 cpld_restart_bmarkfrac_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 090 cpld_restart_bmarkfrac_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmark_wave_prod +Checking test 091 cpld_bmark_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 091 cpld_bmark_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_wave_prod +Checking test 092 cpld_bmarkfrac_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 092 cpld_bmarkfrac_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_wave_v16_prod +Checking test 093 cpld_bmarkfrac_wave_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 093 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_wave_prod +Checking test 094 cpld_control_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 094 cpld_control_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_debug_prod +Checking test 095 cpld_debug results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 095 cpld_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_debugfrac_prod +Checking test 096 cpld_debugfrac results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 096 cpld_debugfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_control_cfsr +Checking test 097 datm_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 097 datm_control_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_restart_cfsr +Checking test 098 datm_restart_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 098 datm_restart_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_control_gefs +Checking test 099 datm_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 099 datm_control_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_bulk_cfsr +Checking test 100 datm_bulk_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 100 datm_bulk_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_bulk_gefs +Checking test 101 datm_bulk_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 101 datm_bulk_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_mx025_cfsr +Checking test 102 datm_mx025_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 102 datm_mx025_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_mx025_gefs +Checking test 103 datm_mx025_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 103 datm_mx025_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_debug_cfsr +Checking test 104 datm_debug_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-01-21600.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK +Test 104 datm_debug_cfsr PASS + + REGRESSION TEST WAS SUCCESSFUL -Wed Feb 3 15:04:07 CST 2021 -Elapsed time: 00h:15m:49s. Have a nice day! +Thu Jan 28 20:39:50 CST 2021 +Elapsed time: 01h:13m:19s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index f9d44dbc8e..fca90dd15c 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -5,3 +5,185 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_ccpp_control | | fv3 | +RUN | fv3_ccpp_decomp | | | +RUN | fv3_ccpp_2threads | | | +RUN | fv3_ccpp_restart | | | fv3_ccpp_control +RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | +RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | +RUN | fv3_ccpp_stochy | | fv3 | +RUN | fv3_ccpp_ca | | fv3 | +RUN | fv3_ccpp_lndp | | fv3 | +# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it +RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_lheatstrg | | fv3 | + +# WW3 not working on Cheyenne in the past, need to check if it works now +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +RUN | fv3_ccpp_multigases | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +RUN | fv3_ccpp_control_32bit | | fv3 | +RUN | fv3_ccpp_stretched | | fv3 | +RUN | fv3_ccpp_stretched_nest | | fv3 | + +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | +RUN | fv3_ccpp_regional_control | | fv3 | +RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control +RUN | fv3_ccpp_regional_quilt | | fv3 | +RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | +#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | +#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +RUN | fv3_ccpp_gfdlmp | | fv3 | +RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | +RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +#RUN | fv3_ccpp_csawmgshoc | | fv3 | +#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | +RUN | fv3_ccpp_csawmg | | fv3 | +RUN | fv3_ccpp_satmedmf | | fv3 | +RUN | fv3_ccpp_satmedmfq | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | +RUN | fv3_ccpp_cpt | | fv3 | +RUN | fv3_ccpp_gsd | | fv3 | +# These two tests crash with NaNs on jet.intel +RUN | fv3_ccpp_rap | - jet.intel | fv3 | +RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | +RUN | fv3_ccpp_thompson | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | | fv3 | +# This test crashes with NaNs on jet.intel +RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 +RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16 | | fv3 | +RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 +RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | + +COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | +# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests +RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | +RUN | fv3_ccpp_gocart_clm | | fv3 | +RUN | fv3_ccpp_gfs_v16_flake | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | + +################################################################################################################################################################################### +# DEBUG tests # +################################################################################################################################################################################### + +# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) +# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 +COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_debug | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | + +COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_gsd_debug | | fv3 | +RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | +RUN | fv3_ccpp_thompson_debug | | fv3 | +RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | +RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | + +################################################################################################################################################################################### +# CPLD tests # +################################################################################################################################################################################### + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart | - wcoss_cray gaea.intel jet.intel | | cpld_control +RUN | cpld_controlfrac | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac + +RUN | cpld_2threads | - wcoss_cray gaea.intel jet.intel | | +RUN | cpld_decomp | - wcoss_cray gaea.intel jet.intel | | +RUN | cpld_satmedmf | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_ca | - wcoss_cray gaea.intel jet.intel | fv3 | + +#12h/36h/48h restart tests +RUN | cpld_control_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c192 +RUN | cpld_controlfrac_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 + +RUN | cpld_control_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 +RUN | cpld_controlfrac_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 + +RUN | cpld_bmark | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmark | - wcoss_cray gaea.intel jet.intel | | cpld_bmark +RUN | cpld_bmarkfrac | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac + +#6h/6h/12h restart test +RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | + +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_debugfrac | - wcoss_cray gaea.intel jet.intel | fv3 | + +################################################################################################################################################################################### +# Data Atmosphere tests # +################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_control_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_restart_cfsr | - wcoss_cray gaea.intel jet.intel | | datm_control_cfsr +RUN | datm_control_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +RUN | datm_bulk_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_bulk_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +RUN | datm_mx025_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_mx025_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | + +COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | datm_debug_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | From 4230e88f5f7234a8f04b92767e7cf04a752b6f6d Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 4 Feb 2021 18:58:07 +0000 Subject: [PATCH 075/117] typo test fix --- tests/auto/rt_auto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 1ed28361fa..c7367070e8 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -1,6 +1,6 @@ """Automation of UFS Regression Testing -This script automates the process of regression testing for code managers +This script automates the process of UFS regression testing for code managers at NOAA-EMC The data set required for this code to operate properly is rt_auto.yml: From 96f8e397f8f5de765afafb815862401d07b2dd13 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 4 Feb 2021 19:49:00 +0000 Subject: [PATCH 076/117] Added more doc strong and removed the need for importing socket --- tests/auto/rt_auto.py | 145 ++++++++++++++++++++++++++++++----------- tests/auto/rt_auto.sh | 3 +- tests/auto/rt_auto.yml | 4 -- 3 files changed, 107 insertions(+), 45 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 1ed28361fa..d9c819a4dc 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -1,6 +1,6 @@ """Automation of UFS Regression Testing -This script automates the process of regression testing for code managers +This script automates the process of UFS regression testing for code managers at NOAA-EMC The data set required for this code to operate properly is rt_auto.yml: @@ -13,9 +13,9 @@ """ from __future__ import print_function from github import Github as gh +import argparse import datetime import time -import socket import threading import subprocess import re @@ -73,33 +73,22 @@ class Machine: baselinedir : str the directory where baselines are stored on the machine ''' - def __init__(self, rtdata_obj): + def __init__(self, rtdata_obj, machineid): self.logger = logging.getLogger("Machine") + self.machine_name = machineid self.get_machine_info(rtdata_obj) - self.machineid = os.environ.get('MACHINE_ID') def get_machine_info(self, rtdata_obj): self.logger.info(f'Getting machine information') - hostname = socket.gethostname() - self.logger.debug(f'hostname is {hostname}') machines = rtdata_obj.get_yaml_subset('machines') - for i, mach in enumerate(machines): - if re.search(mach['regexhostname'], hostname): - self.logger.info(f'{hostname} is an approved machine') - self.name = mach['name'] - self.regexhostname = mach['regexhostname'] - self.workdir = mach['workdir'] - self.baselinedir = mach['baselinedir'] - self.logger.debug(f'self.name: {self.name}\n\ - self.regexhostname: {self.regexhostname}\n\ - self.workdir: {self.workdir}\n\ - self.baselinedir: {self.baselinedir}') - self.logger.info(f'Finished getting machine information') - return - else: - continue - self.logger.critical(f'Hostname:{hostname} does not match approved list.') - raise Exception(f'Hostname:{hostname} does not match approved list.') + this_host = next(mach for mach in machines if mach['name'] == self.machine_name.split('.')[0]) + self.name = this_host['name'] + self.workdir = this_host['workdir'] + self.baselinedir = this_host['baselinedir'] + self.logger.debug(f'self.name: {self.name}\n\ + self.workdir: {self.workdir}\n\ + self.baselinedir: {self.baselinedir}') + self.logger.info(f'Finished getting machine information') class Action: ''' @@ -138,15 +127,12 @@ class GHInterface: ---------- GHACCESSTOKEN : str API token to autheticate with GitHub - GHUSERNAME : str - UserName connected to GHACCESSTOKEN client : pyGitHub communication object The connection to GitHub to make API requests ''' def __init__(self) -> None: self.logger = logging.getLogger("GHInterface") self.get_access_token() - self.client = gh(self.GHACCESSTOKEN) def get_access_token(self): try: @@ -154,22 +140,43 @@ def get_access_token(self): filedata = f.read() except FileNotFoundError: ERROR_MESSAGE = f'Please create a file "accesstoken.txt" that'\ - ' contains your GitHub API Token on the first line, and GitHub'\ - ' Username on the second line.\nMake sure to set permission'\ - ' so others can not read it (400)' + ' contains your GitHub API Token only.\n'\ + 'Make sure to set permission so others can not read it (400)' self.logger.critical(ERROR_MESSAGE) raise FileNotFoundError(ERROR_MESSAGE) else: - filedata = str(filedata)[2:-1].split('\\n') - self.GHACCESSTOKEN = filedata[0] - self.GHUSERNAME = filedata[1] - self.logger.debug(f'GHACCESSTOKEN is {self.GHACCESSTOKEN}') - self.logger.debug(f'GHUSERNAME is {self.GHUSERNAME}') + self.GHACCESSTOKEN = str(filedata)[2:-3] + self.client = gh(self.GHACCESSTOKEN) + try: + self.logger.debug(f'GHUSERNAME is {self.client.get_user().login}') + except Exception as e: + self.logger.critical(f'Exception is {e}') + raise Exception(e) # REPO STUFF class Repo: + ''' + This class stores the information from the input data + rt_auto.yml and stores the object retrieved from the GitHub + API request for the repo as well as all the pull requests in + that repo. + The machine_obj is needed for threaded calls + ... + Attributes + ---------- + name: str + name of the repository + address: str + location of the repository in GitHub + base: str + default branch of the repository + machine_obj: Machine object + a store of the machine information + ghinterface_obj: GHInterface object + the method to make calls to the GitHub API + ''' def __init__(self, name, address, base, machine_obj, ghinterface_obj): self.logger = logging.getLogger("Repo") self.logger.debug(f'Creating a Repo object') @@ -206,7 +213,30 @@ def get_repo_preqs(self): self.logger.debug(f'Finished getting list of GutHub Repo objects') class PullReq: + ''' + This class stores the pull request information. All the + information stored here will be used to keep all data needed + to operate the code as it gets sent off to a thread + ... + Attributes + ---------- + preq_obj: pyGitHub Pull Request object + repo_obj: Repo object + machine_obj: Machine object + branch: str + branch of the repo requesting the pull + repo_name: str + repo requesting the pull + git_url: str + GitHub location of the repo + repo_dir_str: str + Machine location to clone the repo into + labels: list + List of Label objects + clone_dir: str + Machine location of the repo clone + ''' def __init__(self, repo_obj, preq_obj, machine_obj): self.logger = logging.getLogger("PullReq") self.preq_obj = preq_obj @@ -240,7 +270,21 @@ def add_clone_dir(self, clone_dir): self.clone_dir = clone_dir class PRLabel: + ''' + This class stores information from the GitHub pull requests + of labels. These labels are then compared to Action object data + for verification + ... + Attributes + ---------- + name: str + PR label name + machine: str + PR label machine + action_obj: Action object + Action object to compare label with for verification + ''' def __init__(self, name, machine): self.logger = logging.getLogger("PRLabel") self.name = name @@ -249,8 +293,8 @@ def __init__(self, name, machine): self.machine: {self.machine} ') self.action_obj = None - def add_function(self, action_obj): - self.logger.debug("Adding function Object: {action_obj}") + def add_action(self, action_obj): + self.logger.debug("Adding Action Object: {action_obj}") self.action_obj = action_obj def is_approved(self, machine_obj, functions): @@ -259,7 +303,7 @@ def is_approved(self, machine_obj, functions): for action_obj in functions: if action_obj.verify('name', self.name): self.logger.debug(f'Approved label: "{self.name}-{self.machine}"') - self.add_function(action_obj) + self.add_action(action_obj) return True else: self.logger.warning(f'Label not approved. Name: {self.name} not on approved list.') @@ -269,6 +313,12 @@ def is_approved(self, machine_obj, functions): return False def get_approved_functions(rtdata_obj): + ''' Get approved functions from the input data + + Arguments: + rtdata_obj: RTData object + ''' + logger = logging.getLogger("get_approved_functions()") logger.debug(f'Start of get_approved_functions()') function_data = rtdata_obj.get_yaml_subset('functions') @@ -279,9 +329,16 @@ def get_approved_functions(rtdata_obj): return function_list def clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj): + ''' This method clones the pull request repository for Testing + + Arguments: + pullreq_obj: PullReq object + ghinterface_obj: GHInterface object + machine_obj: Machine object + ''' logger = logging.getLogger("clone_pr_repo()") git_url_w_login = pullreq_obj.git_url.split('//') - git_url_w_login = git_url_w_login[0]+"//"+ghinterface_obj.GHUSERNAME+":"+ghinterface_obj.GHACCESSTOKEN+"@"+git_url_w_login[1] + git_url_w_login = git_url_w_login[0]+"//"+ghinterface_obj.GHACCESSTOKEN+"@"+git_url_w_login[1] create_repo_commands = [ ['mkdir -p "'+pullreq_obj.repo_dir_str+'"', machine_obj.workdir], @@ -301,6 +358,10 @@ def clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj): pullreq_obj.add_clone_dir(pullreq_obj.repo_dir_str+"/"+pullreq_obj.repo_name) def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): + '''This method processes each PulLReq obj by checking if the + label in the PR is approved and clones the repository + + ''' logger = logging.getLogger(f'PR#{pullreq_obj.preq_obj.id}') logger.debug(f'Start') for prlabel in pullreq_obj.labels: @@ -432,12 +493,18 @@ def wait_for_daemon_threads(thread_list): logger.debug("All deamon threads finished") def main(): + # Parse Input Arguments + parser = argparse.ArgumentParser() + parser.add_argument("machine_name", help="Machine Name in . format", type=str) + args = parser.parse_args() + if len(args.machine_name.split('.'))!=2: + raise argparse.ArgumentTypeError("Please use . format for machine_name") #SETUP LOGGER logging.basicConfig(filename="rt_auto.log", filemode='w', level=logging.DEBUG) logger = logging.getLogger("main") ghinterface_obj = GHInterface() rtdata_obj= RTData() - machine_obj = Machine(rtdata_obj) + machine_obj = Machine(rtdata_obj, args.machine_name) functions_obj = get_approved_functions(rtdata_obj) repo_list = get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj) delete_old_pullreq(repo_list, machine_obj) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 9a3c37adfb..918ed46339 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -4,7 +4,6 @@ set -eux export RT_COMPILER='intel' source ../detect_machine.sh echo "Machine ID: "+$MACHINE_ID -export MACHINE_ID=$MACHINE_ID if [[ $MACHINE_ID = hera.* ]]; then export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages @@ -27,6 +26,6 @@ else exit 1 fi -python rt_auto.py +python rt_auto.py $MACHINE_ID exit 0 diff --git a/tests/auto/rt_auto.yml b/tests/auto/rt_auto.yml index 72a73624d0..ace892aa6e 100644 --- a/tests/auto/rt_auto.yml +++ b/tests/auto/rt_auto.yml @@ -1,19 +1,15 @@ --- machines: - name: 'hera' - regexhostname: 'hfe\d\d' workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis/test' baselinedir: '/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs' - name: 'gaea' - regexhostname: 'gaea\d{1,2}' workdir: '/lustre/f2/pdata/ncep/Brian.Curtis/test' baselinedir: '/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs' - name: 'jet' - regexhostname: 'fe\d' workdir: '/lfs4/HFIP/hfv3gfs/Brian.Curtis/test' baselinedir: '/mnt/lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs' - name: 'orion' - regexhostname: 'Orion-login-\d.HPC.MsState.Edu' workdir: '/work/noaa/nems/bcurtis/test' baselinedir: '/work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs' # NOT SUPPORTED... YET From 5344adddf170d2de70471f0fdc0623d03d127a2d Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 10 Feb 2021 02:28:10 +0000 Subject: [PATCH 077/117] * Removed need for rt_auto.yml * Removed PullReq, Action, Machine classes as they do not require methods * Created Job class to handle processing of pull requests * Cleaned up main() * Machine information is now passed into python call through args * Added arg usage into rt_auto.py * Modified rt.conf temporarily for testing purposes NOTE: Note ready for merge yet, still need to add documentation and update logging. --- tests/auto/rt_auto.py | 580 ++++++++++++----------------------------- tests/auto/rt_auto.sh | 7 +- tests/auto/rt_auto.yml | 43 --- tests/rt.conf | 182 ------------- 4 files changed, 172 insertions(+), 640 deletions(-) delete mode 100644 tests/auto/rt_auto.yml diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index d9c819a4dc..db9cbe05fb 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -23,101 +23,6 @@ import os import logging -class RTData: - ''' - This class provides a storge location for the data from rt_auto.yml as well - as a method to read the data and a method to get a subset of the data - ... - Attributes - ---------- - data: yaml data - a container for the yaml data - ''' - def __init__(self): - self.logger = logging.getLogger("RTData") - self.data = self.read_yaml_data() - - def read_yaml_data(self): - self.logger.info(f'Reading in default YAML data') - with open('rt_auto.yml', 'r') as stream: - yaml_data = yaml.load(stream, Loader=yaml.SafeLoader) - self.logger.info(f'Finished reading in YAML data') - return yaml_data - - def get_yaml_subset(self, keyin): - self.logger.info(f'Getting YAML subset: {keyin}') - try: - yaml_subset = self.data[keyin] - except KeyError as kerror: - self.logger.critical(f'Unable to get yaml subset {keyin} with error: {kerror}') - raise - else: - self.logger.info(f'Finished getting YAML subset {keyin}') - return yaml_subset - -class Machine: - ''' - A class to store information about the machine the code is being run on - ... - - Attributes - --------- - machineid : str - the env var machine id - name : str - the name of the machine - regexhostname : str - a regex string to match with login nodes of the machine to determine name - workdir : str - the directory to perform work in - baselinedir : str - the directory where baselines are stored on the machine - ''' - def __init__(self, rtdata_obj, machineid): - self.logger = logging.getLogger("Machine") - self.machine_name = machineid - self.get_machine_info(rtdata_obj) - - def get_machine_info(self, rtdata_obj): - self.logger.info(f'Getting machine information') - machines = rtdata_obj.get_yaml_subset('machines') - this_host = next(mach for mach in machines if mach['name'] == self.machine_name.split('.')[0]) - self.name = this_host['name'] - self.workdir = this_host['workdir'] - self.baselinedir = this_host['baselinedir'] - self.logger.debug(f'self.name: {self.name}\n\ - self.workdir: {self.workdir}\n\ - self.baselinedir: {self.baselinedir}') - self.logger.info(f'Finished getting machine information') - -class Action: - ''' - This class stores all the information about each action - ... - - Attributes - ---------- - name : str - the name of the action - command : str - the command the action will run on the machine - callback : str - the function to run once the command has completed - ''' - def __init__(self, name, command, callback): - self.logger = logging.getLogger("Action") - self.name = name - self.command = command - self.callback = callback - self.logger.debug(f'Action object created') - self.logger.debug(f'self.name: {self.name}\n\ - self.command: {self.command}\n\ - self.callback: {self.callback}') - - def verify(self, item, comparable): - return True if re.match(getattr(self, item).lower(), comparable.lower()) else False - - class GHInterface: ''' This class stores information for communicating with GitHub @@ -132,18 +37,15 @@ class GHInterface: ''' def __init__(self) -> None: self.logger = logging.getLogger("GHInterface") - self.get_access_token() - - def get_access_token(self): try: with open('accesstoken.txt', 'rb') as f: filedata = f.read() - except FileNotFoundError: + except FileNotFoundError as e: ERROR_MESSAGE = f'Please create a file "accesstoken.txt" that'\ ' contains your GitHub API Token only.\n'\ 'Make sure to set permission so others can not read it (400)' self.logger.critical(ERROR_MESSAGE) - raise FileNotFoundError(ERROR_MESSAGE) + raise FileNotFoundError(e) else: self.GHACCESSTOKEN = str(filedata)[2:-3] self.client = gh(self.GHACCESSTOKEN) @@ -153,210 +55,6 @@ def get_access_token(self): self.logger.critical(f'Exception is {e}') raise Exception(e) - -# REPO STUFF -class Repo: - ''' - This class stores the information from the input data - rt_auto.yml and stores the object retrieved from the GitHub - API request for the repo as well as all the pull requests in - that repo. - The machine_obj is needed for threaded calls - ... - - Attributes - ---------- - name: str - name of the repository - address: str - location of the repository in GitHub - base: str - default branch of the repository - machine_obj: Machine object - a store of the machine information - ghinterface_obj: GHInterface object - the method to make calls to the GitHub API - ''' - def __init__(self, name, address, base, machine_obj, ghinterface_obj): - self.logger = logging.getLogger("Repo") - self.logger.debug(f'Creating a Repo object') - self.name = name - self.address = address - self.base = base - self.logger.debug(f'self.name: {self.name}\n\ - self.address: {self.address}\n\ - self.base {self.base}') - self.machine_obj = machine_obj - self.ghinterface_obj = ghinterface_obj - self.get_GHrepo_object() - self.get_repo_preqs() - - def get_GHrepo_object(self): - self.logger.debug(f'Getting list of GitHub Repo objects') - try: - self.ghrepo = self.ghinterface_obj.client.get_repo(self.address) - except Exception as e: - self.logger.critical(f'Failed to get repo object with error {e}') - raise Exception(f'Failed to get repo object with error {e}') - - def get_repo_preqs(self): - self.logger.debug(f'Creating list of PullReq objects') - self.pullreq_list = [] - try: - preqs = self.ghrepo.get_pulls(state='open', sort='created', base=self.base) - except Exception as e: - self.logger.critical(f'Failed to get pull object with error {e}') - raise Exception(f'Failed to get pull object with error {e}') - - for preq in preqs: - self.pullreq_list.append(PullReq(self, preq, self.machine_obj)) - self.logger.debug(f'Finished getting list of GutHub Repo objects') - -class PullReq: - ''' - This class stores the pull request information. All the - information stored here will be used to keep all data needed - to operate the code as it gets sent off to a thread - ... - - Attributes - ---------- - preq_obj: pyGitHub Pull Request object - repo_obj: Repo object - machine_obj: Machine object - branch: str - branch of the repo requesting the pull - repo_name: str - repo requesting the pull - git_url: str - GitHub location of the repo - repo_dir_str: str - Machine location to clone the repo into - labels: list - List of Label objects - clone_dir: str - Machine location of the repo clone - ''' - def __init__(self, repo_obj, preq_obj, machine_obj): - self.logger = logging.getLogger("PullReq") - self.preq_obj = preq_obj - self.repo_obj = repo_obj - self.machine_obj = machine_obj - - self.branch = self.preq_obj.head.ref - self.repo_name = self.preq_obj.head.repo.name - self.git_url = self.preq_obj.head.repo.html_url - self.repo_dir_str = self.machine_obj.workdir+'/'+str(preq_obj.id)+'/'+datetime.datetime.now().strftime('%Y%m%d%H%M%S') - self.logger.debug(f'self.branch: {self.branch}\n\ - self.repo_name: {self.repo_name}\n\ - self.git_url: {self.git_url}\n\ - self.repo_dir_str: {self.repo_dir_str}') - self.get_pr_labels() - - def get_pr_labels(self): - self.logger.debug(f'Creating list of PRLabel objects') - self.labels = [] - pr_labels = self.preq_obj.get_labels() - for pr_label in pr_labels: - split_pr_label = pr_label.name.split('-') - if len(split_pr_label) == 3 and split_pr_label[0] == "Auto": - self.labels.append(PRLabel(split_pr_label[1], split_pr_label[2])) - else: - continue - self.logger.debug(f'Finished creating list of PRLabel objects') - - def add_clone_dir(self, clone_dir): - self.logger.debug(f'Adding Clone Dir: {clone_dir}') - self.clone_dir = clone_dir - -class PRLabel: - ''' - This class stores information from the GitHub pull requests - of labels. These labels are then compared to Action object data - for verification - ... - - Attributes - ---------- - name: str - PR label name - machine: str - PR label machine - action_obj: Action object - Action object to compare label with for verification - ''' - def __init__(self, name, machine): - self.logger = logging.getLogger("PRLabel") - self.name = name - self.machine = machine - self.logger.debug(f'self.name: {self.name}\n\ - self.machine: {self.machine} ') - self.action_obj = None - - def add_action(self, action_obj): - self.logger.debug("Adding Action Object: {action_obj}") - self.action_obj = action_obj - - def is_approved(self, machine_obj, functions): - self.logger.debug("Checking if PRLabel is approved") - if re.match(self.machine.lower(), machine_obj.name.lower()): - for action_obj in functions: - if action_obj.verify('name', self.name): - self.logger.debug(f'Approved label: "{self.name}-{self.machine}"') - self.add_action(action_obj) - return True - else: - self.logger.warning(f'Label not approved. Name: {self.name} not on approved list.') - return False - else: - self.logger.warning(f'Label not approved. Machine: {self.machine} not on approved list.') - return False - -def get_approved_functions(rtdata_obj): - ''' Get approved functions from the input data - - Arguments: - rtdata_obj: RTData object - ''' - - logger = logging.getLogger("get_approved_functions()") - logger.debug(f'Start of get_approved_functions()') - function_data = rtdata_obj.get_yaml_subset('functions') - logger.debug("Sending function data off to Action objects") - function_list = [Action(data['name'],data['command'],data['callback_fnc']) - for data in function_data] - logger.debug(f'End of get_approved_functions()') - return function_list - -def clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj): - ''' This method clones the pull request repository for Testing - - Arguments: - pullreq_obj: PullReq object - ghinterface_obj: GHInterface object - machine_obj: Machine object - ''' - logger = logging.getLogger("clone_pr_repo()") - git_url_w_login = pullreq_obj.git_url.split('//') - git_url_w_login = git_url_w_login[0]+"//"+ghinterface_obj.GHACCESSTOKEN+"@"+git_url_w_login[1] - - create_repo_commands = [ - ['mkdir -p "'+pullreq_obj.repo_dir_str+'"', machine_obj.workdir], - ['git clone -b '+pullreq_obj.branch+' '+git_url_w_login, pullreq_obj.repo_dir_str], - ['git submodule update --init --recursive', pullreq_obj.repo_dir_str+'/'+pullreq_obj.repo_name] - ] - - for command, in_cwd in create_repo_commands: - logger.info(f'Attempting to run: {command}') - retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) - retcode.wait() - retcode.poll() - assert(retcode.returncode==0), f'{command} returned with non-zero exit' - logger.info(f'Finished running: {command}') - - logger.debug(f'Finished Cloning {git_url_w_login}') - pullreq_obj.add_clone_dir(pullreq_obj.repo_dir_str+"/"+pullreq_obj.repo_name) - def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): '''This method processes each PulLReq obj by checking if the label in the PR is approved and clones the repository @@ -387,140 +85,194 @@ def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): logger.debug(f'Adding back label Auto-{prlabel.name}-{prlabel.machine}') logger.debug(f'End') -def move_rt_logs(pullreq_obj): - logger = logging.getLogger("move_rt_logs()") - rt_log = 'tests/RegressionTests_'+pullreq_obj.machine_obj.machineid+'.log' - logger.debug(f'rt_log is: {rt_log}') - filepath = pullreq_obj.clone_dir+'/'+rt_log - logger.debug(f'filepath is: {filepath}') - rm_filepath = '/'.join((pullreq_obj.clone_dir.split('/'))[:-1]) - logger.debug(f'rm_filepath is: {rm_filepath}') - if os.path.exists(filepath): - move_rt_commands = [ - ['git add '+rt_log, pullreq_obj.clone_dir], - ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', pullreq_obj.clone_dir], - ['git pull --no-edit origin '+pullreq_obj.branch, pullreq_obj.clone_dir], - ['sleep 10', pullreq_obj.clone_dir], - ['git push origin '+pullreq_obj.branch, pullreq_obj.clone_dir] - ] - for command, in_cwd in move_rt_commands: - logger.debug(f'Attempting to run: {command}') - retcode = subprocess.Popen(command, shell=True, cwd=in_cwd) - retcode.wait() - retcode.poll() - assert(retcode.returncode==0), f'{command} returned with non-zero number' - logger.debug(f'Funished running command: {command}') - else: - logger.critical('Could not find RT log') - raise FileNotFoundError('Could not find RT log') - def runFunction(action_obj, pullreq_obj): - logger = logging.getLogger("runFunction()") goodexit = None - logger.debug(f'Running command: {action_obj.command}') proc = subprocess.Popen(action_obj.command, shell=True, cwd=pullreq_obj.clone_dir) proc.wait() proc.poll() if proc.returncode == 0: - logger.debug(f'Command {action_obj.command} successful') try: - logger.debug(f'Running callback function: {action_obj.callback}') globals()[action_obj.callback](pullreq_obj) except: - logger.critical(f'Callback function {action_obj.callback} failed,\ - skipping callback function') goodexit = False else: - logger.debug(f'Callback function {action_obj.callback} ran successfully') goodexit = True return goodexit -def get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj): - logger = logging.getLogger(f'get_approved_repos') - logger.debug(f'Start') - repo_data = rtdata_obj.get_yaml_subset('repository') - logger.debug(f'Creating list of repository data Repo objects') - repo_list = [Repo(data['name'], data['address'], data['base'], \ - machine_obj, ghinterface_obj) \ - for data in repo_data] - if not isinstance(repo_list, list): - logger.warning(f'repo_list not list type') - repo_list = list(repo_list) - return repo_list - -def delete_old_pullreq(repo_list, machine_obj): - logger = logging.getLogger(f'delete_old_pullreq()') - # Get all PR ID Nums - pr_id_list = [str(single_pr.preq_obj.id) for single_repo in repo_list for single_pr in single_repo.pullreq_list] - dir_list = next(os.walk(machine_obj.workdir))[1] - not_in_both = [item for item in dir_list if not item in pr_id_list] - - for not_in in not_in_both: - if os.path.isdir(machine_obj.workdir+'/'+not_in): - command = 'rm -rf '+machine_obj.workdir+'/'+not_in +def parse_args_in(): + # Create Parse + parser = argparse.ArgumentParser() + + # Setup Input Arguments + parser.add_argument("machine_name", help="Machine name in . format", type=str) + parser.add_argument("workdir", help="Working directory for the machine", type=str) + + # Get Arguments + args = parser.parse_args() + + # Check incoming args for proper formatting and type + if type(args.workdir) != str or type(args.machine_name) != str: + raise TypeError('All arguments need to be of type str') + if len(args.machine_name.split('.'))!=2: + raise argparse.ArgumentTypeError("Please use . format for machine_name") + + return args + +def input_data(args): + machine_dict = { + 'name': args.machine_name, + 'workdir': args.workdir + } + repo_list_dict = [{ + 'name': 'ufs-weather-model', + 'address': 'ufs-community/ufs-weather-model', + 'base': 'develop' + }] + action_list_dict = [{ + 'name': 'RT', + 'command': './tests/rt.sh -e', + 'callback_fnc': 'move_rt_logs' + }] + + return machine_dict, repo_list_dict, action_list_dict + +def match_label_with_action(machine, actions, label): + + split_label = label.name.split('-') + + if len(split_label) != 3: return False + if not re.match(split_label[0], 'Auto'): return False + if not re.match(split_label[2], machine['name'].split('.')[0]): return False + action_match = next((action for action in actions if re.match(action['name'], split_label[1])), False) + + return action_match + + +def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): + + gh_preqs = [ghinterface_obj.client.get_repo(repo['address']).get_pulls(state='open', sort='created', base=repo['base']) for repo in repos] + each_pr = [preq for gh_preq in gh_preqs for preq in gh_preq] + preq_labels = [{'preq': pr, 'label': label} for pr in each_pr for label in pr.get_labels()] + + for i, pr_label in enumerate(preq_labels): + match = match_label_with_action(machine, actions, pr_label['label']) + if match: + preq_labels[i]['action'] = match + else: + preq_labels[i] = False + + preq_labels = [x for x in preq_labels if x] + + return preq_labels + +class Job: + + def __init__(self, pullreq_obj, ghinterface_obj, machine): + self.pullreq_obj = pullreq_obj + self.ghinterface_obj = ghinterface_obj + self.machine = machine + + def clone_pr_repo(self): + + logger = logging.getLogger("clone_pr_repo()") + repo_name = self.pullreq_obj['preq'].head.repo.name + self.branch = self.pullreq_obj['preq'].head.ref + git_url = self.pullreq_obj['preq'].head.repo.html_url.split('//') + git_url = f'{git_url[0]}//{self.ghinterface_obj.GHACCESSTOKEN}@{git_url[1]}' + repo_dir_str = f'{self.machine["workdir"]}/{str(self.pullreq_obj["preq"].id)}/{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' + + create_repo_commands = [ + [f'mkdir -p "{repo_dir_str}"', self.machine['workdir']], + [f'git clone -b {self.branch} {git_url}', repo_dir_str], + [f'git submodule update --init --recursive', f'{repo_dir_str}/{repo_name}'] + ] + + for command, in_cwd in create_repo_commands: logger.info(f'Attempting to run: {command}') - retcode = subprocess.Popen(command, shell=True) - retcode.wait() - retcode.poll() - assert(retcode.returncode==0), f'{command} exited with non-zero number' - if os.path.isdir(machine_obj.workdir+'/'+not_in): - logger.warning(f'Successful command but dir was not removed') + try: + output = subprocess.check_output(command, shell=True, cwd=in_cwd, stderr=subprocess.STDOUT) + except subprocess.CalledProcessError as e: + logger.critical(e) + logger.critical(f'STDOUT: {output.stdout}') + logger.critical(f'STDERR: {output.stderr}') + assert(e) else: - logger.info(f'Command {command} ran successfully') + logger.info(f'Finished running: {command}') + + logger.debug(f'Finished Cloning {git_url}') + self.pr_repo_loc = repo_dir_str+"/"+repo_name + return self.pr_repo_loc + + def runFunction(self): + logger = logging.getLogger("runFunction()") + try: + output = subprocess.check_output(self.pullreq_obj['action']['command'], cwd=self.pr_repo_loc, shell=True, stderr=subprocess.STDOUT) + except subprocess.CalledProcessError as e: + logger.critical(e) + logger.critical(f'STDOUT: {output.stdout}') + logger.critical(f'STDERR: {output.stderr}') + assert(e) else: - logger.warning(f'Somehow directory called for removal does not exist, skipping..') - -def wait_for_daemon_threads(thread_list): - logger = logging.getLogger(f'wait_for_daemon_threads()') - logger.debug(f'Starting to wait for all daemon threads to finish before'\ - 'exiting main()') - last_thread_completed = False - while not last_thread_completed: - if len(thread_list) > 0: - logger.debug("Checking Threads") - for thread in thread_list: - logger.debug(f'Checking Thread {thread.name}') - if thread.is_alive(): - logger.debug(f'Thread {thread.name} Alive, continuing') + try: + globals()[self.pullreq_obj['action']['callback']](self) + except Exception as e: + logger.critical(f'Callback function {self.pullreq_obj["action"]["callback"]} failed') + logger.critical(e) + goodexit = False + else: + logger.info(f'Finished callback {self.pullreq_obj["action"]["callback"]}') + + # Callback Function After Here + def move_rt_logs(self): + logger = logging.getLogger("clone_pr_repo()") + rt_log = 'tests/RegressionTests_'+self.machine.name+'.log' + filepath = self.pr_repo_loc+'/'+rt_log + rm_filepath = '/'.join((self.pr_repo_loc.split('/'))[:-1]) + if os.path.exists(filepath): + move_rt_commands = [ + ['git add '+rt_log, self.pr_repo_loc], + ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', self.pr_repo_loc], + ['git pull --no-edit origin '+self.branch, self.pr_repo_loc], + ['sleep 10', self.pr_repo_loc], + ['git push origin '+self.branch, self.pr_repo_loc] + ] + for command, in_cwd in move_rt_commands: + try: + output = subprocess.check_output(command, shell=True, cwd=in_cwd, stderr=subprocess.STDOUT) + except subprocess.CalledProcessError as e: + logger.critical(e) + logger.critical(f'STDOUT: {output.stdout}') + logger.critical(f'STDERR: {output.stderr}') + assert(e) else: - logger.debug(f'Thread {thread.name} is NOT alive, removing') - thread_list.remove(thread) - logger.debug("Sleeping for 10 seconds") - time.sleep(10) + logger.info(f'Finished command {command}') else: - logger.debug("Thread List Empty, Exiting") - last_thread_completed = True - logger.debug("All deamon threads finished") + logger.critical('Could not find RT log') + raise FileNotFoundError('Could not find RT log') def main(): - # Parse Input Arguments - parser = argparse.ArgumentParser() - parser.add_argument("machine_name", help="Machine Name in . format", type=str) - args = parser.parse_args() - if len(args.machine_name.split('.'))!=2: - raise argparse.ArgumentTypeError("Please use . format for machine_name") - #SETUP LOGGER + # handle input args + args = parse_args_in() + + # handle logging logging.basicConfig(filename="rt_auto.log", filemode='w', level=logging.DEBUG) logger = logging.getLogger("main") + + # get input data + machine, repos, actions = input_data(args) + + # setup interface with GitHub ghinterface_obj = GHInterface() - rtdata_obj= RTData() - machine_obj = Machine(rtdata_obj, args.machine_name) - functions_obj = get_approved_functions(rtdata_obj) - repo_list = get_approved_repos(rtdata_obj, machine_obj, ghinterface_obj) - delete_old_pullreq(repo_list, machine_obj) - thread_list = [] - for single_repo in repo_list: - logger.info(f'Processing {single_repo.address} repository') - for single_pr in single_repo.pullreq_list: - logger.info(f'Sending PR #{single_pr.preq_obj.id} processing off to thread') - thread = threading.Thread(name=f'PR#{single_pr.preq_obj.id}', - target=process_pr, args=(single_pr, ghinterface_obj, - machine_obj, functions_obj), daemon=True) - thread.start() - thread_list.append(thread) - # process_pr(single_pr, ghinterface_obj, machine_obj, functions_obj) - logger.info(f'Finished Sending PR #{single_pr.preq_obj.id} processing off to thread') - wait_for_daemon_threads(thread_list) + + # get all pull requests from the GitHub object + full_preqs = get_preqs_with_actions(repos, machine, ghinterface_obj, actions) + + # add Job objects and run them + jobs = [Job(pullreq_obj, ghinterface_obj, machine) for pullreq_obj in full_preqs] + for job in jobs: + job.clone_pr_repo() + job.runFunction() + if __name__ == '__main__': main() diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 918ed46339..9d794b597e 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -5,15 +5,20 @@ export RT_COMPILER='intel' source ../detect_machine.sh echo "Machine ID: "+$MACHINE_ID if [[ $MACHINE_ID = hera.* ]]; then + WORKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $MACHINE_ID = orion.* ]]; then + WORKDIR=/work/noaa/nems/bcurtis/test export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $MACHINE_ID = jet.* ]]; then + WORKDIR=/lfs4/HFIP/h-nems/Brian.Curtis/test + export ACCNR="h-nems" export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin:$PATH export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages elif [[ $MACHINE_ID = gaea.* ]]; then + WORKDIR=/lustre/f2/pdata/ncep/Brian.Curtis/test export LOADEDMODULES=$LOADEDMODULES export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH @@ -26,6 +31,6 @@ else exit 1 fi -python rt_auto.py $MACHINE_ID +python rt_auto.py $MACHINE_ID $WORKDIR exit 0 diff --git a/tests/auto/rt_auto.yml b/tests/auto/rt_auto.yml deleted file mode 100644 index ace892aa6e..0000000000 --- a/tests/auto/rt_auto.yml +++ /dev/null @@ -1,43 +0,0 @@ ---- - machines: - - name: 'hera' - workdir: '/scratch1/NCEPDEV/nems/Brian.Curtis/test' - baselinedir: '/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs' - - name: 'gaea' - workdir: '/lustre/f2/pdata/ncep/Brian.Curtis/test' - baselinedir: '/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs' - - name: 'jet' - workdir: '/lfs4/HFIP/hfv3gfs/Brian.Curtis/test' - baselinedir: '/mnt/lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs' - - name: 'orion' - workdir: '/work/noaa/nems/bcurtis/test' - baselinedir: '/work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs' - # NOT SUPPORTED... YET - # # VENUS - # - name: 'wcoss_dell_p3' - # regexhostname: 'v\d\d[a-z]\d' - # workdir: False - # baselinedir: '' - # # MARS - # - name: 'wcoss_dell_p3' - # regexhostname: 'm\d\d[a-z]\d' - # workdir: False - # baselinedir: '' - # # SURGE - # - name: 'wcoss_cray' - # regexhostname: 'slogin\d' - # workdir: False - # baselinedir: '' - # # LUNA - # - name: 'wcoss_cray' - # regexhostname: 'llogin\d' - # workdir: False - # baselinedir: '' - repository: - - name: 'ufs-weather-model' - address: 'ufs-community/ufs-weather-model' - base: 'develop' - functions: - - name: 'RT' - command: './tests/rt.sh -e' - callback_fnc: 'move_rt_logs' diff --git a/tests/rt.conf b/tests/rt.conf index fca90dd15c..f9d44dbc8e 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -5,185 +5,3 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_ccpp_control | | fv3 | -RUN | fv3_ccpp_decomp | | | -RUN | fv3_ccpp_2threads | | | -RUN | fv3_ccpp_restart | | | fv3_ccpp_control -RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | -RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | -RUN | fv3_ccpp_stochy | | fv3 | -RUN | fv3_ccpp_ca | | fv3 | -RUN | fv3_ccpp_lndp | | fv3 | -# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it -RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_lheatstrg | | fv3 | - -# WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | -RUN | fv3_ccpp_multigases | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | -RUN | fv3_ccpp_control_32bit | | fv3 | -RUN | fv3_ccpp_stretched | | fv3 | -RUN | fv3_ccpp_stretched_nest | | fv3 | - -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | -RUN | fv3_ccpp_regional_control | | fv3 | -RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control -RUN | fv3_ccpp_regional_quilt | | fv3 | -RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | -#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | -#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_control_debug | | fv3 | -RUN | fv3_ccpp_stretched_nest_debug | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | -RUN | fv3_ccpp_gfdlmp | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | -#RUN | fv3_ccpp_csawmgshoc | | fv3 | -#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | -RUN | fv3_ccpp_csawmg | | fv3 | -RUN | fv3_ccpp_satmedmf | | fv3 | -RUN | fv3_ccpp_satmedmfq | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | -RUN | fv3_ccpp_cpt | | fv3 | -RUN | fv3_ccpp_gsd | | fv3 | -# These two tests crash with NaNs on jet.intel -RUN | fv3_ccpp_rap | - jet.intel | fv3 | -RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | -RUN | fv3_ccpp_thompson | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | | fv3 | -# This test crashes with NaNs on jet.intel -RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | -# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 -RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16 | | fv3 | -RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 -RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | - -COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | -# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests -RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | -RUN | fv3_ccpp_gocart_clm | | fv3 | -RUN | fv3_ccpp_gfs_v16_flake | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | - -################################################################################################################################################################################### -# DEBUG tests # -################################################################################################################################################################################### - -# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 -COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_debug | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | - -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_gsd_debug | | fv3 | -RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | -RUN | fv3_ccpp_thompson_debug | | fv3 | -RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | - -################################################################################################################################################################################### -# CPLD tests # -################################################################################################################################################################################### - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_control | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart | - wcoss_cray gaea.intel jet.intel | | cpld_control -RUN | cpld_controlfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac - -RUN | cpld_2threads | - wcoss_cray gaea.intel jet.intel | | -RUN | cpld_decomp | - wcoss_cray gaea.intel jet.intel | | -RUN | cpld_satmedmf | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_ca | - wcoss_cray gaea.intel jet.intel | fv3 | - -#12h/36h/48h restart tests -RUN | cpld_control_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c192 -RUN | cpld_controlfrac_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 - -RUN | cpld_control_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 -RUN | cpld_controlfrac_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 - -RUN | cpld_bmark | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmark | - wcoss_cray gaea.intel jet.intel | | cpld_bmark -RUN | cpld_bmarkfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac - -#6h/6h/12h restart test -RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debugfrac | - wcoss_cray gaea.intel jet.intel | fv3 | - -################################################################################################################################################################################### -# Data Atmosphere tests # -################################################################################################################################################################################### - -COMPILE | DATM=Y S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_control_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_restart_cfsr | - wcoss_cray gaea.intel jet.intel | | datm_control_cfsr -RUN | datm_control_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | datm_bulk_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_bulk_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -RUN | datm_mx025_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_mx025_gefs | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_debug_cfsr | - wcoss_cray gaea.intel jet.intel | fv3 | From 6778102993195cc0ff2add635b5a66919cbe4d00 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 12 Feb 2021 14:37:50 +0000 Subject: [PATCH 078/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 5321 +------------------------- 1 file changed, 4 insertions(+), 5317 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 7e152a4f27..32efaf7648 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Jan 29 00:17:19 UTC 2021 +Fri Feb 12 14:23:00 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_241275/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,5319 +70,6 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_prod -Checking test 046 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_restart_prod -Checking test 047 fv3_ccpp_gfs_v16_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gocart_clm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_flake_prod -Checking test 055 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_prod -Checking test 069 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_prod -Checking test 070 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restartfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_2threads_prod -Checking test 073 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_decomp_prod -Checking test 074 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_ca_prod -Checking test 076 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_control_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_restart_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_controlfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_restartfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_control_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_restart_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_controlfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_restartfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmark_prod -Checking test 085 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_restart_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_restart_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmark_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_bmarkfrac_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_wave_prod -Checking test 094 cpld_control_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - Comparing 20161004.000000.out_grd.glo_1deg .........OK - Comparing 20161004.000000.out_pnt.points .........OK - Comparing 20161004.000000.restart.glo_1deg .........OK -Test 094 cpld_control_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_debug_prod -Checking test 095 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_debugfrac_prod -Checking test 096 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 096 cpld_debugfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_control_cfsr -Checking test 097 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_restart_cfsr -Checking test 098 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_restart_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_control_gefs -Checking test 099 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_control_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_bulk_cfsr -Checking test 100 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_bulk_gefs -Checking test 101 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_bulk_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_mx025_cfsr -Checking test 102 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_mx025_gefs -Checking test 103 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_mx025_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_debug_cfsr -Checking test 104 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 104 datm_debug_cfsr PASS - - REGRESSION TEST WAS SUCCESSFUL -Fri Jan 29 01:34:02 UTC 2021 -Elapsed time: 01h:16m:44s. Have a nice day! +Fri Feb 12 14:37:49 UTC 2021 +Elapsed time: 00h:14m:50s. Have a nice day! From ebc1edc78ee647432cb9b572077a332954062c4f Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 12 Feb 2021 15:05:25 +0000 Subject: [PATCH 079/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 32efaf7648..e8e25ac049 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Feb 12 14:23:00 UTC 2021 +Fri Feb 12 14:46:38 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_241275/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_18103/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,5 +71,5 @@ Test 001 fv3_ccpp_control PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 12 14:37:49 UTC 2021 -Elapsed time: 00h:14m:50s. Have a nice day! +Fri Feb 12 15:05:25 UTC 2021 +Elapsed time: 00h:18m:47s. Have a nice day! From 58e5255b7ae0d9af8fb5f8fda7c7436e41a909a8 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 12 Feb 2021 15:06:51 +0000 Subject: [PATCH 080/117] * Fixed call using string to access callback function --- tests/auto/rt_auto.py | 207 +++++++++++++++++++++++------------------- 1 file changed, 112 insertions(+), 95 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index db9cbe05fb..8adbd3be68 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -3,11 +3,6 @@ This script automates the process of UFS regression testing for code managers at NOAA-EMC -The data set required for this code to operate properly is rt_auto.yml: - - Provides all the repository information in which to search through - - Provides all information about the machines this code should be run on - - Provides all acceptable commands to be run on machines - This script should be started through rt_auto.sh so that env vars are set up prior to start. """ @@ -36,7 +31,7 @@ class GHInterface: The connection to GitHub to make API requests ''' def __init__(self) -> None: - self.logger = logging.getLogger("GHInterface") + self.logger = logging.getLogger('GHINTERFACE') try: with open('accesstoken.txt', 'rb') as f: filedata = f.read() @@ -48,64 +43,21 @@ def __init__(self) -> None: raise FileNotFoundError(e) else: self.GHACCESSTOKEN = str(filedata)[2:-3] - self.client = gh(self.GHACCESSTOKEN) try: - self.logger.debug(f'GHUSERNAME is {self.client.get_user().login}') + self.client = gh(self.GHACCESSTOKEN) except Exception as e: self.logger.critical(f'Exception is {e}') raise Exception(e) -def process_pr(pullreq_obj, ghinterface_obj, machine_obj, functions): - '''This method processes each PulLReq obj by checking if the - label in the PR is approved and clones the repository - - ''' - logger = logging.getLogger(f'PR#{pullreq_obj.preq_obj.id}') - logger.debug(f'Start') - for prlabel in pullreq_obj.labels: - if prlabel.is_approved(machine_obj, functions): - try: - logger.debug(f'Removing Label Auto-{prlabel.name}-{prlabel.machine}') - pullreq_obj.preq_obj.remove_from_labels(f'Auto-{prlabel.name}-{prlabel.machine}') - clone_pr_repo(pullreq_obj, ghinterface_obj, machine_obj) - goodexit = runFunction(prlabel.action_obj, pullreq_obj) - except KeyboardInterrupt: - print(f'KEY BOAR DINTERRUPT') - pullreq_obj.preq_obj.add_to_labels(f'Auto-{prlabel.name}-{prlabel.machine}') - raise - except Exception as e: - logger.critical(f'ERROR RUNNING RT {prlabel.action_obj.command} with error: {e}') - logger.debug(f'Adding back label Auto-{prlabel.name}-{prlabel.machine}') - pullreq_obj.preq_obj.add_to_labels(f'Auto-{prlabel.name}-{prlabel.machine}') - raise - else: - if goodexit == False: - logger.debug(f'runFunction exited with error') - pullreq_obj.preq_obj.add_to_labels(f'Auto-{prlabel.name}-{prlabel.machine}') - logger.debug(f'Adding back label Auto-{prlabel.name}-{prlabel.machine}') - logger.debug(f'End') - -def runFunction(action_obj, pullreq_obj): - goodexit = None - proc = subprocess.Popen(action_obj.command, shell=True, cwd=pullreq_obj.clone_dir) - proc.wait() - proc.poll() - if proc.returncode == 0: - try: - globals()[action_obj.callback](pullreq_obj) - except: - goodexit = False - else: - goodexit = True - return goodexit - def parse_args_in(): + ''' Parse all input arguments coming from rt_auto.sh ''' + logger = logging.getLogger('PARSE_ARGS_IN') # Create Parse parser = argparse.ArgumentParser() # Setup Input Arguments - parser.add_argument("machine_name", help="Machine name in . format", type=str) - parser.add_argument("workdir", help="Working directory for the machine", type=str) + parser.add_argument('machine_name', help='Machine name in . format', type=str) + parser.add_argument('workdir', help='Working directory for the machine', type=str) # Get Arguments args = parser.parse_args() @@ -114,11 +66,13 @@ def parse_args_in(): if type(args.workdir) != str or type(args.machine_name) != str: raise TypeError('All arguments need to be of type str') if len(args.machine_name.split('.'))!=2: - raise argparse.ArgumentTypeError("Please use . format for machine_name") + raise argparse.ArgumentTypeError('Please use . format for machine_name') return args def input_data(args): + ''' Create dictionaries of data needed for processing UFS pull requests ''' + logger = logging.getLogger('INPUT_DATA') machine_dict = { 'name': args.machine_name, 'workdir': args.workdir @@ -137,7 +91,8 @@ def input_data(args): return machine_dict, repo_list_dict, action_list_dict def match_label_with_action(machine, actions, label): - + ''' Match the label that initiates a job with an action in the dict''' + logger = logging.getLogger('MATCH_LABEL_WITH_ACTIONS') split_label = label.name.split('-') if len(split_label) != 3: return False @@ -149,7 +104,8 @@ def match_label_with_action(machine, actions, label): def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): - + ''' Create list of dictionaries of a pull request and its machine label and action ''' + logger = logging.getLogger('GET_PREQS_WITH_ACTIONS') gh_preqs = [ghinterface_obj.client.get_repo(repo['address']).get_pulls(state='open', sort='created', base=repo['base']) for repo in repos] each_pr = [preq for gh_preq in gh_preqs for preq in gh_preq] preq_labels = [{'preq': pr, 'label': label} for pr in each_pr for label in pr.get_labels()] @@ -161,25 +117,52 @@ def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): else: preq_labels[i] = False - preq_labels = [x for x in preq_labels if x] + preq_dict = [x for x in preq_labels if x] - return preq_labels + return preq_dict class Job: + ''' + This class stores all information needed to run jobs on this machine. + This class provides all methods needed to run all jobs. + ... + + Attributes + ---------- + preq_dict: dict + Dictionary of all data that comes from the GitHub pull request + ghinterface_obj: object + An interface to GitHub setup through class GHInterface + machine: dict + Information about the machine the jobs will be running on + provided by the bash script + ''' - def __init__(self, pullreq_obj, ghinterface_obj, machine): - self.pullreq_obj = pullreq_obj + def __init__(self, preq_dict, ghinterface_obj, machine): + self.logger = logging.getLogger('JOB') + self.preq_dict = preq_dict self.ghinterface_obj = ghinterface_obj self.machine = machine - def clone_pr_repo(self): + def remove_pr_label(self): + ''' Removes the pull request label that initiated the job run from PR ''' + self.logger.info(f'Removing Label: {self.preq_dict["label"]}') + self.preq_dict['preq'].remove_from_labels(self.preq_dict['label']) + + def add_pr_label(self): + ''' adds the pull request label that initiated the job run to PR''' + self.logger.info(f'Adding Label: {self.preq_dict["label"]}') + self.preq_dict['preq'].add_to_labels(self.preq_dict['label']) - logger = logging.getLogger("clone_pr_repo()") - repo_name = self.pullreq_obj['preq'].head.repo.name - self.branch = self.pullreq_obj['preq'].head.ref - git_url = self.pullreq_obj['preq'].head.repo.html_url.split('//') + def clone_pr_repo(self): + ''' clone the GitHub pull request repo, via command line ''' + logger = logging.getLogger('JOB/CLONE_PR_REPO') + repo_name = self.preq_dict['preq'].head.repo.name + self.branch = self.preq_dict['preq'].head.ref + git_url = self.preq_dict['preq'].head.repo.html_url.split('//') git_url = f'{git_url[0]}//{self.ghinterface_obj.GHACCESSTOKEN}@{git_url[1]}' - repo_dir_str = f'{self.machine["workdir"]}/{str(self.pullreq_obj["preq"].id)}/{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' + logger.info(f'Starting clone of {git_url}') + repo_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}/{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' create_repo_commands = [ [f'mkdir -p "{repo_dir_str}"', self.machine['workdir']], @@ -188,90 +171,124 @@ def clone_pr_repo(self): ] for command, in_cwd in create_repo_commands: - logger.info(f'Attempting to run: {command}') + logger.info(f'Running "{command}" in location "{in_cwd}"') try: - output = subprocess.check_output(command, shell=True, cwd=in_cwd, stderr=subprocess.STDOUT) - except subprocess.CalledProcessError as e: + output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + output.communicate() + except Exception as e: + self.add_pr_label() logger.critical(e) logger.critical(f'STDOUT: {output.stdout}') logger.critical(f'STDERR: {output.stderr}') assert(e) else: logger.info(f'Finished running: {command}') + logger.debug(f'stdout: {output.stdout}') + logger.debug(f'stderr: {output.stderr}') logger.debug(f'Finished Cloning {git_url}') self.pr_repo_loc = repo_dir_str+"/"+repo_name return self.pr_repo_loc def runFunction(self): - logger = logging.getLogger("runFunction()") + ''' Run the command associted with the label used to initiate this job ''' + logger = logging.getLogger('JOB/RUNFUNCTION') try: - output = subprocess.check_output(self.pullreq_obj['action']['command'], cwd=self.pr_repo_loc, shell=True, stderr=subprocess.STDOUT) - except subprocess.CalledProcessError as e: + logger.info(f'Running: "{self.preq_dict["action"]["command"]}" in "{self.pr_repo_loc}"') + output = subprocess.Popen(self.preq_dict['action']['command'], cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + output.communicate() + except Exception as e: + self.add_pr_label() logger.critical(e) logger.critical(f'STDOUT: {output.stdout}') logger.critical(f'STDERR: {output.stderr}') assert(e) else: try: - globals()[self.pullreq_obj['action']['callback']](self) + logger.info(f'Attempting to run callback: {self.preq_dict["action"]["callback_fnc"]}') + getattr(self, self.preq_dict['action']['callback_fnc'])() except Exception as e: - logger.critical(f'Callback function {self.pullreq_obj["action"]["callback"]} failed') - logger.critical(e) + self.add_pr_label() + logger.critical(f'Callback function {self.preq_dict["action"]["callback_fnc"]} failed with "{e}"') goodexit = False else: - logger.info(f'Finished callback {self.pullreq_obj["action"]["callback"]}') + logger.info(f'Finished callback {self.preq_dict["action"]["callback_fnc"]}') + logger.debug(f'stdout: {output.stdout}') + logger.debug(f'stderr: {output.stderr}') - # Callback Function After Here + # Add Callback Functions After Here def move_rt_logs(self): - logger = logging.getLogger("clone_pr_repo()") - rt_log = 'tests/RegressionTests_'+self.machine.name+'.log' - filepath = self.pr_repo_loc+'/'+rt_log + ''' This is the callback function associated with the "RT" command ''' + logger = logging.getLogger('JOB/MOVE_RT_LOGS') + rt_log = f'tests/RegressionTests_{self.machine["name"]}.log' + filepath = f'{self.pr_repo_loc}/{rt_log}' rm_filepath = '/'.join((self.pr_repo_loc.split('/'))[:-1]) if os.path.exists(filepath): move_rt_commands = [ - ['git add '+rt_log, self.pr_repo_loc], - ['git commit -m "Auto: Added Updated RT Log file: '+rt_log+'"', self.pr_repo_loc], - ['git pull --no-edit origin '+self.branch, self.pr_repo_loc], + [f'git add {rt_log}', self.pr_repo_loc], + [f'git commit -m "Auto: Added Updated RT Log file: {rt_log}"', self.pr_repo_loc], + [f'git pull --no-edit origin {self.branch}', self.pr_repo_loc], ['sleep 10', self.pr_repo_loc], - ['git push origin '+self.branch, self.pr_repo_loc] + [f'git push origin {self.branch}', self.pr_repo_loc] ] for command, in_cwd in move_rt_commands: try: - output = subprocess.check_output(command, shell=True, cwd=in_cwd, stderr=subprocess.STDOUT) - except subprocess.CalledProcessError as e: + logger.info(f'Attempting to run: {command}') + output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + output.communicate() + except Exception as e: + self.add_pr_label() logger.critical(e) logger.critical(f'STDOUT: {output.stdout}') logger.critical(f'STDERR: {output.stderr}') assert(e) else: logger.info(f'Finished command {command}') + logger.debug(f'stdout: {output.stdout}') + logger.debug(f'stderr: {output.stderr}') else: logger.critical('Could not find RT log') raise FileNotFoundError('Could not find RT log') def main(): - # handle input args - args = parse_args_in() # handle logging - logging.basicConfig(filename="rt_auto.log", filemode='w', level=logging.DEBUG) - logger = logging.getLogger("main") + logging.basicConfig(filename='rt_auto.log', filemode='w', level=logging.DEBUG) + logger = logging.getLogger('MAIN') + logger.info('Starting Script') + # handle input args + logger.info('Parsing input args') + args = parse_args_in() # get input data + logger.info('Calling input_data().') machine, repos, actions = input_data(args) # setup interface with GitHub + logger.info('Setting up GitHub interface.') ghinterface_obj = GHInterface() # get all pull requests from the GitHub object - full_preqs = get_preqs_with_actions(repos, machine, ghinterface_obj, actions) + logger.info('Getting all pull requests, labels and actions applicable to this machine.') + preq_dict = get_preqs_with_actions(repos, machine, ghinterface_obj, actions) # add Job objects and run them - jobs = [Job(pullreq_obj, ghinterface_obj, machine) for pullreq_obj in full_preqs] + logger.info('Adding all jobs to an object list and running them.') + jobs = [Job(pullreq, ghinterface_obj, machine) for pullreq in preq_dict] for job in jobs: - job.clone_pr_repo() - job.runFunction() + try: + logger.debug('Calling remove_pr_label') + job.remove_pr_label() + logger.debug('Calling clone_pr_repo') + job.clone_pr_repo() + logger.debug('Calling runFunction') + job.runFunction() + except Exception as e: + job.add_pr_label() + logger.critical(e) + assert(e) + + logger.info('Script Finished') if __name__ == '__main__': From 5fe9ad6cfa846847521cf26a1d578637ce81dc37 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 12 Feb 2021 15:11:06 +0000 Subject: [PATCH 081/117] rt.conf for testing --- tests/rt.conf | 183 -------------------------------------------------- 1 file changed, 183 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index 5c240af485..f9d44dbc8e 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -5,186 +5,3 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_ccpp_control | | fv3 | -RUN | fv3_ccpp_decomp | | | -RUN | fv3_ccpp_2threads | | | -RUN | fv3_ccpp_restart | | | fv3_ccpp_control -RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | -RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | -RUN | fv3_ccpp_stochy | | fv3 | -RUN | fv3_ccpp_ca | | fv3 | -RUN | fv3_ccpp_lndp | | fv3 | -# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it -RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_lheatstrg | | fv3 | - -# WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | -RUN | fv3_ccpp_multigases | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | -RUN | fv3_ccpp_control_32bit | | fv3 | -RUN | fv3_ccpp_stretched | | fv3 | -RUN | fv3_ccpp_stretched_nest | | fv3 | - -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | -RUN | fv3_ccpp_regional_control | | fv3 | -RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control -RUN | fv3_ccpp_regional_quilt | | fv3 | -RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | -#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | -#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_control_debug | | fv3 | -RUN | fv3_ccpp_stretched_nest_debug | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | -RUN | fv3_ccpp_gfdlmp | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | -#RUN | fv3_ccpp_csawmgshoc | | fv3 | -#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | -RUN | fv3_ccpp_csawmg | | fv3 | -RUN | fv3_ccpp_satmedmf | | fv3 | -RUN | fv3_ccpp_satmedmfq | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | -RUN | fv3_ccpp_cpt | | fv3 | -RUN | fv3_ccpp_gsd | | fv3 | -# These two tests crash with NaNs on jet.intel -RUN | fv3_ccpp_rap | - jet.intel | fv3 | -RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | -RUN | fv3_ccpp_thompson | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | | fv3 | -# This test crashes with NaNs on jet.intel -RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | -# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 -RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16 | | fv3 | -RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 -RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | - -COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | -# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests -RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | -RUN | fv3_ccpp_gocart_clm | | fv3 | -RUN | fv3_ccpp_gfs_v16_flake | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | - -################################################################################################################################################################################### -# DEBUG tests # -################################################################################################################################################################################### - -# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 -COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_debug | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | - -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_gsd_debug | | fv3 | -RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | -RUN | fv3_ccpp_thompson_debug | | fv3 | -RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | - -################################################################################################################################################################################### -# CPLD tests # -################################################################################################################################################################################### - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | -RUN | cpld_control | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control -RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac - -RUN | cpld_2threads | - wcoss_cray jet.intel | | -RUN | cpld_decomp | - wcoss_cray jet.intel | | -RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | -RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | - -#12h/36h/48h restart tests -RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 -RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 - -RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 -RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 - -RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark -RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac - -#6h/6h/12h restart test -# test fails on gaea with esmfpio error -RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | -RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | -RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | - -################################################################################################################################################################################### -# Data Atmosphere tests # -################################################################################################################################################################################### - -COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | -RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | -RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr -RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | - -RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | -RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | - -RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | -RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | - -COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | -RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | From fde7d86193f668197a40b3a4855e913997d63fad Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 12 Feb 2021 09:35:08 -0600 Subject: [PATCH 082/117] Auto: Added Updated RT Log file: tests/RegressionTests_orion.intel.log --- tests/RegressionTests_orion.intel.log | 5321 +------------------------ 1 file changed, 4 insertions(+), 5317 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b81151a515..33055deac6 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Feb 11 08:08:46 CST 2021 +Fri Feb 12 09:21:04 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_167769/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -70,5319 +70,6 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_prod -Checking test 046 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_restart_prod -Checking test 047 fv3_ccpp_gfs_v16_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gocart_clm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_flake_prod -Checking test 055 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_prod -Checking test 069 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_prod -Checking test 070 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restartfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_2threads_prod -Checking test 073 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_decomp_prod -Checking test 074 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_ca_prod -Checking test 076 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_ca PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_control_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_restart_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_controlfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_restartfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_control_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_restart_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_controlfrac_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_restartfrac_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmark_prod -Checking test 085 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_restart_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_restart_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmark_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_bmarkfrac_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_wave_prod -Checking test 094 cpld_control_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - Comparing 20161004.000000.out_grd.glo_1deg .........OK - Comparing 20161004.000000.out_pnt.points .........OK - Comparing 20161004.000000.restart.glo_1deg .........OK -Test 094 cpld_control_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_debug_prod -Checking test 095 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_debugfrac_prod -Checking test 096 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 096 cpld_debugfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_control_cfsr -Checking test 097 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_restart_cfsr -Checking test 098 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_restart_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_control_gefs -Checking test 099 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_control_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_bulk_cfsr -Checking test 100 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_bulk_gefs -Checking test 101 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_bulk_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_mx025_cfsr -Checking test 102 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_mx025_gefs -Checking test 103 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_mx025_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_debug_cfsr -Checking test 104 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 104 datm_debug_cfsr PASS - - REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 09:25:39 CST 2021 -Elapsed time: 01h:16m:54s. Have a nice day! +Fri Feb 12 09:35:07 CST 2021 +Elapsed time: 00h:14m:03s. Have a nice day! From c46c38b8d49f826ce8caa2229eaf8c85d1791a08 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 12 Feb 2021 10:43:49 -0500 Subject: [PATCH 083/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 4829 +------------------------- 1 file changed, 4 insertions(+), 4825 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 8160897e02..7f9313196b 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Thu Feb 11 11:12:57 EST 2021 +Fri Feb 12 10:26:38 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16679/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -70,4827 +70,6 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 017 fv3_ccpp_multigases PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_control_32bit PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_stretched PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 020 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 021 fv3_ccpp_regional_control PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK -Test 022 fv3_ccpp_regional_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 023 fv3_ccpp_regional_quilt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_debug_prod -Checking test 025 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 025 fv3_ccpp_control_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_nest_debug_prod -Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK -Test 026 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_csawmg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmfq PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_cpt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_gsd PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_rap PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_hrrr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_prod -Checking test 042 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_prod -Checking test 043 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_restart_prod -Checking test 044 fv3_ccpp_gfs_v16_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gocart_clm PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_flake_prod -Checking test 052 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfs_v16_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_debug_prod -Checking test 059 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gsd_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_debug_prod -Checking test 061 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_prod -Checking test 066 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 066 cpld_control PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_prod -Checking test 067 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 067 cpld_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_prod -Checking test 068 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 068 cpld_controlfrac PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_prod -Checking test 069 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_restartfrac PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_2threads_prod -Checking test 070 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_2threads PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_decomp_prod -Checking test 071 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_decomp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_satmedmf_prod -Checking test 072 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_satmedmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_ca_prod -Checking test 073 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_ca PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_c192_prod -Checking test 074 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 074 cpld_control_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_c192_prod -Checking test 075 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 075 cpld_restart_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_c192_prod -Checking test 076 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 076 cpld_controlfrac_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_c192_prod -Checking test 077 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_restartfrac_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_c384_prod -Checking test 078 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 078 cpld_control_c384 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_c384_prod -Checking test 079 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 079 cpld_restart_c384 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_c384_prod -Checking test 080 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 080 cpld_controlfrac_c384 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_c384_prod -Checking test 081 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_restartfrac_c384 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_bmark_prod -Checking test 082 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 082 cpld_bmark PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_bmark_prod -Checking test 083 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 083 cpld_restart_bmark PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_bmarkfrac_prod -Checking test 084 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 084 cpld_bmarkfrac PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_bmarkfrac_prod -Checking test 085 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_restart_bmarkfrac PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_debug_prod -Checking test 086 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 086 cpld_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_debugfrac_prod -Checking test 087 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 087 cpld_debugfrac PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_control_cfsr -Checking test 088 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 088 datm_control_cfsr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_restart_cfsr -Checking test 089 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 089 datm_restart_cfsr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_control_gefs -Checking test 090 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 090 datm_control_gefs PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_bulk_cfsr -Checking test 091 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 091 datm_bulk_cfsr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_bulk_gefs -Checking test 092 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 092 datm_bulk_gefs PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_mx025_cfsr -Checking test 093 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 093 datm_mx025_cfsr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_mx025_gefs -Checking test 094 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 094 datm_mx025_gefs PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_debug_cfsr -Checking test 095 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 095 datm_debug_cfsr PASS - - REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 12:36:16 EST 2021 -Elapsed time: 01h:23m:20s. Have a nice day! +Fri Feb 12 10:43:49 EST 2021 +Elapsed time: 00h:17m:12s. Have a nice day! From 542183be4c50522ae3d1693902141d44fa6b769d Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 12 Feb 2021 19:21:13 +0000 Subject: [PATCH 084/117] Bringing back current RegressionTests_* and rt.conf --- tests/RegressionTests_gaea.intel.log | 4829 +++++++++++++++++++++- tests/RegressionTests_orion.intel.log | 5321 ++++++++++++++++++++++++- tests/rt.conf | 183 + 3 files changed, 10325 insertions(+), 8 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 7f9313196b..8160897e02 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Fri Feb 12 10:26:38 EST 2021 +Thu Feb 11 11:12:57 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16679/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -70,6 +70,4827 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_decomp_prod +Checking test 002 fv3_ccpp_decomp results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 002 fv3_ccpp_decomp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 003 fv3_ccpp_2threads PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 004 fv3_ccpp_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_read_inc_prod +Checking test 005 fv3_ccpp_read_inc results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 005 fv3_ccpp_read_inc PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 007 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_stochy PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_ca PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 015 fv3_ccpp_iau PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_lheatstrg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_multigases_prod +Checking test 017 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 017 fv3_ccpp_multigases PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_32bit_prod +Checking test 018 fv3_ccpp_control_32bit results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 018 fv3_ccpp_control_32bit PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_prod +Checking test 019 fv3_ccpp_stretched results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 019 fv3_ccpp_stretched PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_nest_prod +Checking test 020 fv3_ccpp_stretched_nest results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.nest02.tile7.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 020 fv3_ccpp_stretched_nest PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_control_prod +Checking test 021 fv3_ccpp_regional_control results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 021 fv3_ccpp_regional_control PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_restart_prod +Checking test 022 fv3_ccpp_regional_restart results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK +Test 022 fv3_ccpp_regional_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_quilt_prod +Checking test 023 fv3_ccpp_regional_quilt results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 023 fv3_ccpp_regional_quilt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK +Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_debug_prod +Checking test 025 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 025 fv3_ccpp_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_nest_debug_prod +Checking test 026 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK +Test 026 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmp_prod +Checking test 027 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 027 fv3_ccpp_gfdlmp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 028 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 029 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_csawmg_prod +Checking test 030 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 030 fv3_ccpp_csawmg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_satmedmf_prod +Checking test 031 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 031 fv3_ccpp_satmedmf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_satmedmfq_prod +Checking test 032 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 032 fv3_ccpp_satmedmfq PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmp_32bit_prod +Checking test 033 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 033 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_cpt_prod +Checking test 035 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 035 fv3_ccpp_cpt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_prod +Checking test 036 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 036 fv3_ccpp_gsd PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rap_prod +Checking test 037 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 037 fv3_ccpp_rap PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_hrrr_prod +Checking test 038 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 038 fv3_ccpp_hrrr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_prod +Checking test 039 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 039 fv3_ccpp_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_no_aero_prod +Checking test 040 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 040 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rrfs_v1beta_prod +Checking test 041 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 041 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_prod +Checking test 042 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 042 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_prod +Checking test 043 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 043 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_restart_prod +Checking test 044 fv3_ccpp_gfs_v16_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 044 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_stochy_prod +Checking test 045 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfsv16_csawmg_prod +Checking test 049 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gocart_clm_prod +Checking test 051 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 051 fv3_ccpp_gocart_clm PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_flake_prod +Checking test 052 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 052 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 055 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 056 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_debug_prod +Checking test 059 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 059 fv3_ccpp_gsd_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 060 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_debug_prod +Checking test 061 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 061 fv3_ccpp_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 062 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 063 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_prod +Checking test 066 cpld_control results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 066 cpld_control PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_prod +Checking test 067 cpld_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 067 cpld_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_prod +Checking test 068 cpld_controlfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 068 cpld_controlfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_prod +Checking test 069 cpld_restartfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 069 cpld_restartfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_2threads_prod +Checking test 070 cpld_2threads results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 070 cpld_2threads PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_decomp_prod +Checking test 071 cpld_decomp results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 071 cpld_decomp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_satmedmf_prod +Checking test 072 cpld_satmedmf results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 072 cpld_satmedmf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_ca_prod +Checking test 073 cpld_ca results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 073 cpld_ca PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_c192_prod +Checking test 074 cpld_control_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 074 cpld_control_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_c192_prod +Checking test 075 cpld_restart_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 075 cpld_restart_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_c192_prod +Checking test 076 cpld_controlfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 076 cpld_controlfrac_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_c192_prod +Checking test 077 cpld_restartfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 077 cpld_restartfrac_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_c384_prod +Checking test 078 cpld_control_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 078 cpld_control_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_c384_prod +Checking test 079 cpld_restart_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 079 cpld_restart_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_c384_prod +Checking test 080 cpld_controlfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 080 cpld_controlfrac_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_c384_prod +Checking test 081 cpld_restartfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 081 cpld_restartfrac_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_bmark_prod +Checking test 082 cpld_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 082 cpld_bmark PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_bmark_prod +Checking test 083 cpld_restart_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 083 cpld_restart_bmark PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_bmarkfrac_prod +Checking test 084 cpld_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 084 cpld_bmarkfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_bmarkfrac_prod +Checking test 085 cpld_restart_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 085 cpld_restart_bmarkfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_debug_prod +Checking test 086 cpld_debug results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 086 cpld_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_debugfrac_prod +Checking test 087 cpld_debugfrac results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 087 cpld_debugfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_control_cfsr +Checking test 088 datm_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 088 datm_control_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_restart_cfsr +Checking test 089 datm_restart_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 089 datm_restart_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_control_gefs +Checking test 090 datm_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 090 datm_control_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_bulk_cfsr +Checking test 091 datm_bulk_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 091 datm_bulk_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_bulk_gefs +Checking test 092 datm_bulk_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 092 datm_bulk_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_mx025_cfsr +Checking test 093 datm_mx025_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 093 datm_mx025_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_mx025_gefs +Checking test 094 datm_mx025_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 094 datm_mx025_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_debug_cfsr +Checking test 095 datm_debug_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-01-21600.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK +Test 095 datm_debug_cfsr PASS + + REGRESSION TEST WAS SUCCESSFUL -Fri Feb 12 10:43:49 EST 2021 -Elapsed time: 00h:17m:12s. Have a nice day! +Thu Feb 11 12:36:16 EST 2021 +Elapsed time: 01h:23m:20s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 33055deac6..b81151a515 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Fri Feb 12 09:21:04 CST 2021 +Thu Feb 11 08:08:46 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_167769/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -70,6 +70,5319 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_decomp_prod +Checking test 002 fv3_ccpp_decomp results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 002 fv3_ccpp_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 003 fv3_ccpp_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 004 fv3_ccpp_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_read_inc_prod +Checking test 005 fv3_ccpp_read_inc results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 005 fv3_ccpp_read_inc PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 007 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_stochy PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_ca PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 015 fv3_ccpp_iau PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_lheatstrg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_prod +Checking test 017 fv3_ccpp_gfdlmprad results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 017 fv3_ccpp_gfdlmprad PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 018 fv3_ccpp_gfdlmprad_atmwav PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_c768_prod +Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf006.nemsio .........OK + Comparing dynf006.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing out_grd.glo_10m .........OK + Comparing out_grd.ant_9km .........OK + Comparing out_grd.aoc_9km .........OK +Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_multigases_prod +Checking test 020 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 020 fv3_ccpp_multigases PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_32bit_prod +Checking test 021 fv3_ccpp_control_32bit results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 021 fv3_ccpp_control_32bit PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_prod +Checking test 022 fv3_ccpp_stretched results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 022 fv3_ccpp_stretched PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_nest_prod +Checking test 023 fv3_ccpp_stretched_nest results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.nest02.tile7.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 023 fv3_ccpp_stretched_nest PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_control_prod +Checking test 024 fv3_ccpp_regional_control results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 024 fv3_ccpp_regional_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_restart_prod +Checking test 025 fv3_ccpp_regional_restart results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK +Test 025 fv3_ccpp_regional_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_quilt_prod +Checking test 026 fv3_ccpp_regional_quilt results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 026 fv3_ccpp_regional_quilt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_debug_prod +Checking test 028 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 028 fv3_ccpp_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_nest_debug_prod +Checking test 029 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK +Test 029 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmp_prod +Checking test 030 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 030 fv3_ccpp_gfdlmp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 031 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 032 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_csawmg_prod +Checking test 033 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 033 fv3_ccpp_csawmg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_satmedmf_prod +Checking test 034 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 034 fv3_ccpp_satmedmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_satmedmfq_prod +Checking test 035 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 035 fv3_ccpp_satmedmfq PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmp_32bit_prod +Checking test 036 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 036 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_cpt_prod +Checking test 038 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 038 fv3_ccpp_cpt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_prod +Checking test 039 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 039 fv3_ccpp_gsd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rap_prod +Checking test 040 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 040 fv3_ccpp_rap PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_hrrr_prod +Checking test 041 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 041 fv3_ccpp_hrrr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_prod +Checking test 042 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 042 fv3_ccpp_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_no_aero_prod +Checking test 043 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 043 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rrfs_v1beta_prod +Checking test 044 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 044 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_prod +Checking test 045 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_prod +Checking test 046 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_restart_prod +Checking test 047 fv3_ccpp_gfs_v16_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 047 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_stochy_prod +Checking test 048 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfsv16_csawmg_prod +Checking test 052 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 052 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 053 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gocart_clm_prod +Checking test 054 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 054 fv3_ccpp_gocart_clm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_flake_prod +Checking test 055 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 055 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 058 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 059 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_debug_prod +Checking test 062 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 062 fv3_ccpp_gsd_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 063 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_debug_prod +Checking test 064 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 064 fv3_ccpp_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 065 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 066 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_prod +Checking test 069 cpld_control results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 069 cpld_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_prod +Checking test 070 cpld_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 070 cpld_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_prod +Checking test 071 cpld_controlfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 071 cpld_controlfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_prod +Checking test 072 cpld_restartfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 072 cpld_restartfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_2threads_prod +Checking test 073 cpld_2threads results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 073 cpld_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_decomp_prod +Checking test 074 cpld_decomp results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 074 cpld_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_satmedmf_prod +Checking test 075 cpld_satmedmf results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 075 cpld_satmedmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_ca_prod +Checking test 076 cpld_ca results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 076 cpld_ca PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_c192_prod +Checking test 077 cpld_control_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 077 cpld_control_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_c192_prod +Checking test 078 cpld_restart_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 078 cpld_restart_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_c192_prod +Checking test 079 cpld_controlfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 079 cpld_controlfrac_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_c192_prod +Checking test 080 cpld_restartfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 080 cpld_restartfrac_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_c384_prod +Checking test 081 cpld_control_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 081 cpld_control_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_c384_prod +Checking test 082 cpld_restart_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 082 cpld_restart_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_c384_prod +Checking test 083 cpld_controlfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 083 cpld_controlfrac_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_c384_prod +Checking test 084 cpld_restartfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 084 cpld_restartfrac_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmark_prod +Checking test 085 cpld_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 085 cpld_bmark PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmark_prod +Checking test 086 cpld_restart_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 086 cpld_restart_bmark PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_prod +Checking test 087 cpld_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 087 cpld_bmarkfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmarkfrac_prod +Checking test 088 cpld_restart_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 088 cpld_restart_bmarkfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_v16_prod +Checking test 089 cpld_bmarkfrac_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 089 cpld_bmarkfrac_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmarkfrac_v16_prod +Checking test 090 cpld_restart_bmarkfrac_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 090 cpld_restart_bmarkfrac_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmark_wave_prod +Checking test 091 cpld_bmark_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 091 cpld_bmark_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_wave_prod +Checking test 092 cpld_bmarkfrac_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 092 cpld_bmarkfrac_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_wave_v16_prod +Checking test 093 cpld_bmarkfrac_wave_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 093 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_wave_prod +Checking test 094 cpld_control_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 094 cpld_control_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_debug_prod +Checking test 095 cpld_debug results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 095 cpld_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_debugfrac_prod +Checking test 096 cpld_debugfrac results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 096 cpld_debugfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_control_cfsr +Checking test 097 datm_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 097 datm_control_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_restart_cfsr +Checking test 098 datm_restart_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 098 datm_restart_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_control_gefs +Checking test 099 datm_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 099 datm_control_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_bulk_cfsr +Checking test 100 datm_bulk_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 100 datm_bulk_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_bulk_gefs +Checking test 101 datm_bulk_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 101 datm_bulk_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_mx025_cfsr +Checking test 102 datm_mx025_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 102 datm_mx025_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_mx025_gefs +Checking test 103 datm_mx025_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 103 datm_mx025_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_debug_cfsr +Checking test 104 datm_debug_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-01-21600.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK +Test 104 datm_debug_cfsr PASS + + REGRESSION TEST WAS SUCCESSFUL -Fri Feb 12 09:35:07 CST 2021 -Elapsed time: 00h:14m:03s. Have a nice day! +Thu Feb 11 09:25:39 CST 2021 +Elapsed time: 01h:16m:54s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index f9d44dbc8e..5c240af485 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -5,3 +5,186 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_ccpp_control | | fv3 | +RUN | fv3_ccpp_decomp | | | +RUN | fv3_ccpp_2threads | | | +RUN | fv3_ccpp_restart | | | fv3_ccpp_control +RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | +RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | +RUN | fv3_ccpp_stochy | | fv3 | +RUN | fv3_ccpp_ca | | fv3 | +RUN | fv3_ccpp_lndp | | fv3 | +# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it +RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_lheatstrg | | fv3 | + +# WW3 not working on Cheyenne in the past, need to check if it works now +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +RUN | fv3_ccpp_multigases | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +RUN | fv3_ccpp_control_32bit | | fv3 | +RUN | fv3_ccpp_stretched | | fv3 | +RUN | fv3_ccpp_stretched_nest | | fv3 | + +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | +RUN | fv3_ccpp_regional_control | | fv3 | +RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control +RUN | fv3_ccpp_regional_quilt | | fv3 | +RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | +#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | +#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +RUN | fv3_ccpp_gfdlmp | | fv3 | +RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | +RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +#RUN | fv3_ccpp_csawmgshoc | | fv3 | +#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | +RUN | fv3_ccpp_csawmg | | fv3 | +RUN | fv3_ccpp_satmedmf | | fv3 | +RUN | fv3_ccpp_satmedmfq | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | +RUN | fv3_ccpp_cpt | | fv3 | +RUN | fv3_ccpp_gsd | | fv3 | +# These two tests crash with NaNs on jet.intel +RUN | fv3_ccpp_rap | - jet.intel | fv3 | +RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | +RUN | fv3_ccpp_thompson | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | | fv3 | +# This test crashes with NaNs on jet.intel +RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 +RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16 | | fv3 | +RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 +RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | + +COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | +# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests +RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | +RUN | fv3_ccpp_gocart_clm | | fv3 | +RUN | fv3_ccpp_gfs_v16_flake | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | + +################################################################################################################################################################################### +# DEBUG tests # +################################################################################################################################################################################### + +# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) +# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 +COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_debug | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | + +COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_gsd_debug | | fv3 | +RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | +RUN | fv3_ccpp_thompson_debug | | fv3 | +RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | +RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | + +################################################################################################################################################################################### +# CPLD tests # +################################################################################################################################################################################### + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | cpld_control | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control +RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac + +RUN | cpld_2threads | - wcoss_cray jet.intel | | +RUN | cpld_decomp | - wcoss_cray jet.intel | | +RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | +RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | + +#12h/36h/48h restart tests +RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 +RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 + +RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 +RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 + +RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark +RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac + +#6h/6h/12h restart test +# test fails on gaea with esmfpio error +RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | + +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | +RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | + +################################################################################################################################################################################### +# Data Atmosphere tests # +################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr +RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | + +RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | + +RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | + +COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | +RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | From 0217f9ad417837b6dbbc0aa194670f0bea83e986 Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Fri, 12 Feb 2021 14:58:19 -0500 Subject: [PATCH 085/117] Update rt_auto.py yaml not needed any more --- tests/auto/rt_auto.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 8adbd3be68..cf8d1dd53c 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -14,7 +14,6 @@ import threading import subprocess import re -import yaml import os import logging From 56f0226c74de4b8f3e23c6ec66e6cb8fd487185d Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 12 Feb 2021 16:15:50 -0500 Subject: [PATCH 086/117] * removed uneeded imports * fixed the imput args to be more specific * adjusted shell script to better work with python code --- tests/auto/rt_auto.py | 13 +++---------- tests/auto/rt_auto.sh | 2 +- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index cf8d1dd53c..8c258bea43 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -10,8 +10,6 @@ from github import Github as gh import argparse import datetime -import time -import threading import subprocess import re import os @@ -55,18 +53,13 @@ def parse_args_in(): parser = argparse.ArgumentParser() # Setup Input Arguments - parser.add_argument('machine_name', help='Machine name in . format', type=str) - parser.add_argument('workdir', help='Working directory for the machine', type=str) + choices = ['hera.intel', 'orion.intel', 'gaea.intel', 'jet.intel', 'wcoss_dell_p3'] + parser.add_argument('-m', '--machine', help='Machine and Compiler combination', required=True, choices=choices, metadata=".", type=str) + parser.add_argument('-w', '--workdir', help='Working directory', required=True, type=str) # Get Arguments args = parser.parse_args() - # Check incoming args for proper formatting and type - if type(args.workdir) != str or type(args.machine_name) != str: - raise TypeError('All arguments need to be of type str') - if len(args.machine_name.split('.'))!=2: - raise argparse.ArgumentTypeError('Please use . format for machine_name') - return args def input_data(args): diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 9d794b597e..e827ce20dc 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -31,6 +31,6 @@ else exit 1 fi -python rt_auto.py $MACHINE_ID $WORKDIR +python rt_auto.py -m $MACHINE_ID -w $WORKDIR exit 0 From c48e9b660051017ffe197d36d463fa4402d27fa8 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 22 Feb 2021 14:14:17 +0000 Subject: [PATCH 087/117] Update to help testing cronjob --- tests/auto/rt_auto.py | 61 +++++++++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 26 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 8c258bea43..f8ccdd7c31 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -54,7 +54,7 @@ def parse_args_in(): # Setup Input Arguments choices = ['hera.intel', 'orion.intel', 'gaea.intel', 'jet.intel', 'wcoss_dell_p3'] - parser.add_argument('-m', '--machine', help='Machine and Compiler combination', required=True, choices=choices, metadata=".", type=str) + parser.add_argument('-m', '--machine', help='Machine and Compiler combination', required=True, choices=choices, type=str) parser.add_argument('-w', '--workdir', help='Working directory', required=True, type=str) # Get Arguments @@ -66,7 +66,7 @@ def input_data(args): ''' Create dictionaries of data needed for processing UFS pull requests ''' logger = logging.getLogger('INPUT_DATA') machine_dict = { - 'name': args.machine_name, + 'name': args.machine, 'workdir': args.workdir } repo_list_dict = [{ @@ -76,7 +76,7 @@ def input_data(args): }] action_list_dict = [{ 'name': 'RT', - 'command': './tests/rt.sh -e', + 'command': './rt.sh -e', 'callback_fnc': 'move_rt_logs' }] @@ -166,17 +166,17 @@ def clone_pr_repo(self): logger.info(f'Running "{command}" in location "{in_cwd}"') try: output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - output.communicate() + out, err = output.communicate() except Exception as e: self.add_pr_label() logger.critical(e) - logger.critical(f'STDOUT: {output.stdout}') - logger.critical(f'STDERR: {output.stderr}') + logger.critical(f'STDOUT: {out}') + logger.critical(f'STDERR: {err}') assert(e) else: logger.info(f'Finished running: {command}') - logger.debug(f'stdout: {output.stdout}') - logger.debug(f'stderr: {output.stderr}') + logger.debug(f'stdout: {out}') + logger.debug(f'stderr: {err}') logger.debug(f'Finished Cloning {git_url}') self.pr_repo_loc = repo_dir_str+"/"+repo_name @@ -187,26 +187,34 @@ def runFunction(self): logger = logging.getLogger('JOB/RUNFUNCTION') try: logger.info(f'Running: "{self.preq_dict["action"]["command"]}" in "{self.pr_repo_loc}"') - output = subprocess.Popen(self.preq_dict['action']['command'], cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - output.communicate() + output = subprocess.Popen(self.preq_dict['action']['command'], cwd=self.pr_repo_loc+"/tests", shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + out,err = output.communicate() except Exception as e: self.add_pr_label() logger.critical(e) - logger.critical(f'STDOUT: {output.stdout}') - logger.critical(f'STDERR: {output.stderr}') + logger.critical(f'stdout: {out}') + logger.critical(f'stderr: {err}') assert(e) else: - try: - logger.info(f'Attempting to run callback: {self.preq_dict["action"]["callback_fnc"]}') - getattr(self, self.preq_dict['action']['callback_fnc'])() - except Exception as e: + logger.critical(f'STDOUT: {out}') + logger.critical(f'STDERR: {err}') + if output.returncode != 0: self.add_pr_label() - logger.critical(f'Callback function {self.preq_dict["action"]["callback_fnc"]} failed with "{e}"') - goodexit = False + logger.critical(f'{self.preq_dict["action"]["command"]} Failed') + logger.debug(f'stdout: {out}') + logger.debug(f'stderr: {err}') else: - logger.info(f'Finished callback {self.preq_dict["action"]["callback_fnc"]}') - logger.debug(f'stdout: {output.stdout}') - logger.debug(f'stderr: {output.stderr}') + try: + logger.info(f'Attempting to run callback: {self.preq_dict["action"]["callback_fnc"]}') + getattr(self, self.preq_dict['action']['callback_fnc'])() + except Exception as e: + self.add_pr_label() + logger.critical(f'Callback function {self.preq_dict["action"]["callback_fnc"]} failed with "{e}"') + goodexit = False + else: + logger.info(f'Finished callback {self.preq_dict["action"]["callback_fnc"]}') + logger.debug(f'stdout: {out}') + logger.debug(f'stderr: {err}') # Add Callback Functions After Here def move_rt_logs(self): @@ -227,17 +235,17 @@ def move_rt_logs(self): try: logger.info(f'Attempting to run: {command}') output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - output.communicate() + out, err = output.communicate() except Exception as e: self.add_pr_label() logger.critical(e) - logger.critical(f'STDOUT: {output.stdout}') - logger.critical(f'STDERR: {output.stderr}') + logger.critical(f'stdout: {out}') + logger.critical(f'stderr: {err}') assert(e) else: logger.info(f'Finished command {command}') - logger.debug(f'stdout: {output.stdout}') - logger.debug(f'stderr: {output.stderr}') + logger.debug(f'stdout: {out}') + logger.debug(f'stderr: {err}') else: logger.critical('Could not find RT log') raise FileNotFoundError('Could not find RT log') @@ -268,6 +276,7 @@ def main(): logger.info('Adding all jobs to an object list and running them.') jobs = [Job(pullreq, ghinterface_obj, machine) for pullreq in preq_dict] for job in jobs: + logger.info(f'Starting Job: {job}') try: logger.debug('Calling remove_pr_label') job.remove_pr_label() From ce270272a50eb0f252b51cf54bb47446f74747fa Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 22 Feb 2021 14:16:02 +0000 Subject: [PATCH 088/117] Merging with develop --- CMakeLists.txt | 8 + FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 995 +++++-- tests/RegressionTests_cheyenne.intel.log | 2429 ++++++++-------- tests/RegressionTests_gaea.intel.log | 2519 +++++++++-------- tests/RegressionTests_hera.gnu.log | 995 +++++-- tests/RegressionTests_hera.intel.log | 2611 ++++++++++-------- tests/RegressionTests_jet.intel.log | 2419 +++++++++------- tests/RegressionTests_orion.intel.log | 2571 +++++++++-------- tests/RegressionTests_wcoss_cray.log | 2275 ++++++++------- tests/RegressionTests_wcoss_dell_p3.log | 2557 +++++++++-------- tests/ci/ci.sh | 2 - tests/compare_ncfile.py | 18 +- tests/default_vars.sh | 2 + tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN | 22 + tests/fv3_conf/ccpp_gsd_run.IN | 3 +- tests/parm/ccpp_gsd.nml.IN | 20 +- tests/parm/ccpp_v16_c96_ugwpv1.nml.IN | 343 +++ tests/rt.conf | 22 +- tests/rt.sh | 39 +- tests/rt_ccpp_dev.conf | 4 +- tests/rt_gnu.conf | 21 +- tests/rt_utils.sh | 16 +- tests/tests/fv3_ccpp_gfsv16_ugwpv1 | 88 + tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug | 88 + tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart | 88 + tests/tests/fv3_ccpp_regional_control_debug | 35 + tests/tests/fv3_ccpp_thompson | 12 +- tests/tests/fv3_ccpp_thompson_debug | 12 +- tests/tests/fv3_ccpp_thompson_no_aero | 12 +- tests/tests/fv3_ccpp_thompson_no_aero_debug | 12 +- tests/utest.bld | 44 +- 32 files changed, 11708 insertions(+), 8576 deletions(-) create mode 100644 tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN create mode 100644 tests/parm/ccpp_v16_c96_ugwpv1.nml.IN create mode 100644 tests/tests/fv3_ccpp_gfsv16_ugwpv1 create mode 100644 tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug create mode 100644 tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart create mode 100644 tests/tests/fv3_ccpp_regional_control_debug diff --git a/CMakeLists.txt b/CMakeLists.txt index ac3e5e8d1a..c1782977d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -149,6 +149,14 @@ list(APPEND _fms_defs_public use_libMPI if(QUAD_PRECISION) list(APPEND _fms_defs_public ENABLE_QUAD_PRECISION) endif() + +# check gettid +include(CheckFunctionExists) +check_function_exists(gettid HAVE_GETTID) +if(HAVE_GETTID) + list(APPEND _fms_defs_public HAVE_GETTID) +endif() + target_compile_definitions(fms PUBLIC "${_fms_defs_public}") if(32BIT) diff --git a/FV3 b/FV3 index 9412b8596c..70e55f21b8 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9412b8596c01cfc42303959f760f309f7f9c0350 +Subproject commit 70e55f21b80df17f2c4b8b1a270fddb8d28ff75b diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 14ce806cba..fdb44ea6fd 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,16 +1,16 @@ -Thu Feb 11 07:35:12 MST 2021 +Wed Feb 17 13:05:22 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -50,15 +50,15 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Test 001 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -118,15 +118,15 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Test 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,15 +248,15 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -316,15 +316,15 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -384,15 +384,15 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -452,15 +452,15 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -520,15 +520,15 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -579,24 +579,24 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -612,15 +612,15 @@ Checking test 009 fv3_ccpp_gsd results .... Test 009 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -647,24 +647,24 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -680,15 +680,15 @@ Checking test 010 fv3_ccpp_thompson results .... Test 010 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -715,24 +715,24 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -748,15 +748,15 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -783,24 +783,24 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -816,15 +816,15 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -884,10 +884,10 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -902,9 +902,133 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_control_debug_prod -Checking test 015 fv3_ccpp_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_control_debug_prod +Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -929,18 +1053,86 @@ Checking test 015 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 015 fv3_ccpp_control_debug PASS +Test 017 fv3_ccpp_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_debug_prod +Checking test 019 fv3_ccpp_gfs_v16_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -997,18 +1189,18 @@ Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_gfs_v15p2_debug PASS +Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_debug_prod -Checking test 017 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1065,18 +1257,18 @@ Checking test 017 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_ccpp_gfs_v16_debug PASS +Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1133,18 +1325,18 @@ Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_multigases_prod +Checking test 022 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1201,18 +1393,171 @@ Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 022 fv3_ccpp_multigases PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_regional_control_debug_prod +Checking test 023 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 023 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gsd_debug_prod +Checking test 025 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 025 fv3_ccpp_gsd_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_debug_prod +Checking test 026 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1239,24 +1584,24 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1269,24 +1614,86 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK +Test 026 fv3_ccpp_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1343,13 +1750,13 @@ Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -1361,9 +1768,71 @@ Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 07:53:31 MST 2021 -Elapsed time: 00h:18m:20s. Have a nice day! +Wed Feb 17 13:22:49 MST 2021 +Elapsed time: 00h:17m:28s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 850ed8a7c9..361f44df77 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,16 +1,16 @@ -Thu Feb 11 07:34:17 MST 2021 +Wed Feb 17 13:30:04 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -70,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -138,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -324,15 +324,15 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,19 +420,19 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -468,15 +468,15 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -564,15 +564,15 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -612,15 +612,15 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -680,15 +680,15 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -966,25 +966,25 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1006,15 +1006,15 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1040,25 +1040,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1074,47 +1074,47 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1130,56 +1130,56 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1197,30 +1197,30 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1228,10 +1228,10 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1239,65 +1239,15 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_control_debug_prod -Checking test 025 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 025 fv3_ccpp_control_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stretched_nest_debug_prod -Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK -Test 026 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1334,18 +1284,18 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 025 fv3_ccpp_gfdlmp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1382,18 +1332,18 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 026 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1430,18 +1380,18 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 027 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1478,18 +1428,18 @@ Checking test 030 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_csawmg PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 028 fv3_ccpp_csawmg PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1526,18 +1476,18 @@ Checking test 031 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 029 fv3_ccpp_satmedmf PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1574,42 +1524,42 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmfq PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 030 fv3_ccpp_satmedmfq PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1622,18 +1572,18 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 031 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1643,25 +1593,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1674,42 +1624,42 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1728,18 +1678,18 @@ Checking test 035 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_cpt PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 033 fv3_ccpp_cpt PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1789,25 +1739,25 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1820,18 +1770,18 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_gsd PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 034 fv3_ccpp_gsd PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rap_prod +Checking test 035 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1857,25 +1807,25 @@ Checking test 037 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1888,18 +1838,18 @@ Checking test 037 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_rap PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 035 fv3_ccpp_rap PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_hrrr_prod +Checking test 036 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1925,25 +1875,25 @@ Checking test 038 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1956,18 +1906,18 @@ Checking test 038 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_hrrr PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 036 fv3_ccpp_hrrr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_prod +Checking test 037 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1993,25 +1943,25 @@ Checking test 039 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2024,18 +1974,18 @@ Checking test 039 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_thompson PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 037 fv3_ccpp_thompson PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_no_aero_prod +Checking test 038 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2061,25 +2011,25 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2092,18 +2042,18 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 038 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2129,26 +2079,26 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK @@ -2160,18 +2110,18 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_prod -Checking test 042 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 039 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_prod +Checking test 040 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2240,12 +2190,12 @@ Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16 PASS +Test 040 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_restart_prod -Checking test 043 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_restart_prod +Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2290,18 +2240,18 @@ Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_stochy_prod -Checking test 044 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 041 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_stochy_prod +Checking test 042 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2358,18 +2308,18 @@ Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 042 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2426,12 +2376,12 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2488,18 +2438,18 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gocart_clm_prod -Checking test 047 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gocart_clm_prod +Checking test 045 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2536,18 +2486,18 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gocart_clm PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_flake_prod -Checking test 048 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 045 fv3_ccpp_gocart_clm PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_flake_prod +Checking test 046 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2604,18 +2554,18 @@ Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 046 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2672,13 +2622,13 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -2690,18 +2640,142 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v15p2_debug_prod Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2761,15 +2835,15 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_debug_prod Checking test 052 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2829,15 +2903,15 @@ Checking test 052 fv3_ccpp_gfs_v16_debug results .... Test 052 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2897,15 +2971,15 @@ Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2965,15 +3039,76 @@ Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gsd_debug_prod -Checking test 055 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_control_debug_prod +Checking test 055 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 055 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_debug_prod +Checking test 056 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 056 fv3_ccpp_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_nest_debug_prod +Checking test 057 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 057 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_debug_prod +Checking test 058 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2999,25 +3134,25 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3030,18 +3165,18 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_gsd_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 058 fv3_ccpp_gsd_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3067,25 +3202,25 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3098,18 +3233,18 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_debug_prod -Checking test 057 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 059 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_debug_prod +Checking test 060 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3135,25 +3270,25 @@ Checking test 057 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3166,18 +3301,18 @@ Checking test 057 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_thompson_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 060 fv3_ccpp_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3203,25 +3338,25 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3234,18 +3369,18 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 061 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3271,25 +3406,25 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3302,18 +3437,18 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 062 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3370,13 +3505,13 @@ Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3388,12 +3523,74 @@ Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_prod -Checking test 062 cpld_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_prod +Checking test 066 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3441,12 +3638,12 @@ Checking test 062 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 062 cpld_control PASS +Test 066 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_prod -Checking test 063 cpld_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_prod +Checking test 067 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3494,12 +3691,12 @@ Checking test 063 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 063 cpld_restart PASS +Test 067 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_controlfrac_prod -Checking test 064 cpld_controlfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_prod +Checking test 068 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3547,12 +3744,12 @@ Checking test 064 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 064 cpld_controlfrac PASS +Test 068 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restartfrac_prod -Checking test 065 cpld_restartfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_prod +Checking test 069 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3600,12 +3797,12 @@ Checking test 065 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 065 cpld_restartfrac PASS +Test 069 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_2threads_prod -Checking test 066 cpld_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_2threads_prod +Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3653,12 +3850,12 @@ Checking test 066 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 066 cpld_2threads PASS +Test 070 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_decomp_prod -Checking test 067 cpld_decomp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_decomp_prod +Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3706,12 +3903,12 @@ Checking test 067 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 067 cpld_decomp PASS +Test 071 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_satmedmf_prod -Checking test 068 cpld_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_satmedmf_prod +Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3759,12 +3956,12 @@ Checking test 068 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 068 cpld_satmedmf PASS +Test 072 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_ca_prod -Checking test 069 cpld_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_ca_prod +Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3812,12 +4009,12 @@ Checking test 069 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_ca PASS +Test 073 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_c192_prod -Checking test 070 cpld_control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_c192_prod +Checking test 074 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3865,12 +4062,12 @@ Checking test 070 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 070 cpld_control_c192 PASS +Test 074 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_c192_prod -Checking test 071 cpld_restart_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_c192_prod +Checking test 075 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3918,12 +4115,12 @@ Checking test 071 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 071 cpld_restart_c192 PASS +Test 075 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_controlfrac_c192_prod -Checking test 072 cpld_controlfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_c192_prod +Checking test 076 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3971,12 +4168,12 @@ Checking test 072 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 072 cpld_controlfrac_c192 PASS +Test 076 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restartfrac_c192_prod -Checking test 073 cpld_restartfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_c192_prod +Checking test 077 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4024,12 +4221,12 @@ Checking test 073 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 073 cpld_restartfrac_c192 PASS +Test 077 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_c384_prod -Checking test 074 cpld_control_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_c384_prod +Checking test 078 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4080,12 +4277,12 @@ Checking test 074 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_control_c384 PASS +Test 078 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_c384_prod -Checking test 075 cpld_restart_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_c384_prod +Checking test 079 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4136,12 +4333,12 @@ Checking test 075 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_restart_c384 PASS +Test 079 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_controlfrac_c384_prod -Checking test 076 cpld_controlfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_c384_prod +Checking test 080 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4192,12 +4389,12 @@ Checking test 076 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_controlfrac_c384 PASS +Test 080 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restartfrac_c384_prod -Checking test 077 cpld_restartfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_c384_prod +Checking test 081 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4248,12 +4445,12 @@ Checking test 077 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 077 cpld_restartfrac_c384 PASS +Test 081 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmark_prod -Checking test 078 cpld_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmark_prod +Checking test 082 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4304,12 +4501,12 @@ Checking test 078 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 078 cpld_bmark PASS +Test 082 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_bmark_prod -Checking test 079 cpld_restart_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmark_prod +Checking test 083 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4360,12 +4557,12 @@ Checking test 079 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 079 cpld_restart_bmark PASS +Test 083 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_prod -Checking test 080 cpld_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_prod +Checking test 084 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4416,12 +4613,12 @@ Checking test 080 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 080 cpld_bmarkfrac PASS +Test 084 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_bmarkfrac_prod -Checking test 081 cpld_restart_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmarkfrac_prod +Checking test 085 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4472,12 +4669,12 @@ Checking test 081 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 081 cpld_restart_bmarkfrac PASS +Test 085 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_v16_prod -Checking test 082 cpld_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_v16_prod +Checking test 086 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4528,12 +4725,12 @@ Checking test 082 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 082 cpld_bmarkfrac_v16 PASS +Test 086 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_bmarkfrac_v16_prod -Checking test 083 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmarkfrac_v16_prod +Checking test 087 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4584,12 +4781,12 @@ Checking test 083 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 083 cpld_restart_bmarkfrac_v16 PASS +Test 087 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmark_wave_prod -Checking test 084 cpld_bmark_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmark_wave_prod +Checking test 088 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4643,12 +4840,12 @@ Checking test 084 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 084 cpld_bmark_wave PASS +Test 088 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_wave_prod -Checking test 085 cpld_bmarkfrac_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_wave_prod +Checking test 089 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4702,12 +4899,12 @@ Checking test 085 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmarkfrac_wave PASS +Test 089 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_wave_v16_prod -Checking test 086 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_wave_v16_prod +Checking test 090 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4761,12 +4958,12 @@ Checking test 086 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 086 cpld_bmarkfrac_wave_v16 PASS +Test 090 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_wave_prod -Checking test 087 cpld_control_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_wave_prod +Checking test 091 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4817,12 +5014,12 @@ Checking test 087 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 087 cpld_control_wave PASS +Test 091 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_debug_prod -Checking test 088 cpld_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_debug_prod +Checking test 092 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4870,12 +5067,12 @@ Checking test 088 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 088 cpld_debug PASS +Test 092 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_debugfrac_prod -Checking test 089 cpld_debugfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_debugfrac_prod +Checking test 093 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4923,87 +5120,87 @@ Checking test 089 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 089 cpld_debugfrac PASS +Test 093 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_control_cfsr -Checking test 090 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_control_cfsr +Checking test 094 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 090 datm_control_cfsr PASS +Test 094 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_restart_cfsr -Checking test 091 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_restart_cfsr +Checking test 095 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 091 datm_restart_cfsr PASS +Test 095 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_control_gefs -Checking test 092 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_control_gefs +Checking test 096 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 092 datm_control_gefs PASS +Test 096 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_bulk_cfsr -Checking test 093 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_bulk_cfsr +Checking test 097 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 093 datm_bulk_cfsr PASS +Test 097 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_bulk_gefs -Checking test 094 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_bulk_gefs +Checking test 098 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 094 datm_bulk_gefs PASS +Test 098 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_mx025_cfsr -Checking test 095 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_mx025_cfsr +Checking test 099 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 095 datm_mx025_cfsr PASS +Test 099 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_mx025_gefs -Checking test 096 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_mx025_gefs +Checking test 100 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_mx025_gefs PASS +Test 100 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_debug_cfsr -Checking test 097 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_debug_cfsr +Checking test 101 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 097 datm_debug_cfsr PASS +Test 101 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 08:54:18 MST 2021 -Elapsed time: 01h:20m:02s. Have a nice day! +Wed Feb 17 14:49:52 MST 2021 +Elapsed time: 01h:19m:48s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 8160897e02..368d969a32 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,16 +1,16 @@ -Thu Feb 11 11:12:57 EST 2021 +Wed Feb 17 18:30:56 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -70,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -138,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -324,15 +324,15 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,15 +420,15 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -468,15 +468,15 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -564,15 +564,15 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -612,15 +612,15 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -680,15 +680,15 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -966,25 +966,25 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1006,15 +1006,15 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1040,25 +1040,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1074,47 +1074,47 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1130,56 +1130,56 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1197,30 +1197,30 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1228,76 +1228,26 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_debug_prod -Checking test 025 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 025 fv3_ccpp_control_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_nest_debug_prod -Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK -Test 026 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1334,18 +1284,18 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 025 fv3_ccpp_gfdlmp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1382,18 +1332,18 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 026 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1430,18 +1380,18 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 027 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1478,18 +1428,18 @@ Checking test 030 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_csawmg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 028 fv3_ccpp_csawmg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1526,18 +1476,18 @@ Checking test 031 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 029 fv3_ccpp_satmedmf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1574,42 +1524,42 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmfq PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 030 fv3_ccpp_satmedmfq PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1622,18 +1572,18 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 031 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1643,25 +1593,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1674,42 +1624,42 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1728,18 +1678,18 @@ Checking test 035 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_cpt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 033 fv3_ccpp_cpt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1789,25 +1739,25 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1820,18 +1770,18 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_gsd PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 034 fv3_ccpp_gsd PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rap_prod +Checking test 035 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1857,25 +1807,25 @@ Checking test 037 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1888,18 +1838,18 @@ Checking test 037 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_rap PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 035 fv3_ccpp_rap PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_hrrr_prod +Checking test 036 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1925,25 +1875,25 @@ Checking test 038 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1956,18 +1906,18 @@ Checking test 038 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_hrrr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 036 fv3_ccpp_hrrr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_prod +Checking test 037 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1993,25 +1943,25 @@ Checking test 039 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2024,18 +1974,18 @@ Checking test 039 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 037 fv3_ccpp_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_no_aero_prod +Checking test 038 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2061,25 +2011,25 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2092,18 +2042,18 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 038 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2129,25 +2079,25 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2160,18 +2110,18 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_prod -Checking test 042 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 039 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_prod +Checking test 040 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2228,18 +2178,18 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_prod -Checking test 043 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 040 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_prod +Checking test 041 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2308,12 +2258,12 @@ Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16 PASS +Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_restart_prod -Checking test 044 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_restart_prod +Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2358,18 +2308,18 @@ Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 042 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_stochy_prod +Checking test 043 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2426,18 +2376,18 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 043 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2494,18 +2444,18 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2562,12 +2512,12 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2624,18 +2574,18 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmg_prod +Checking test 047 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2672,18 +2622,18 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 047 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2708,34 +2658,170 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gocart_clm_prod +Checking test 049 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 049 fv3_ccpp_gocart_clm PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_flake_prod +Checking test 050 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -2768,18 +2854,30 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gocart_clm PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_flake_prod -Checking test 052 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2836,18 +2934,12 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2904,36 +2996,18 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_debug_prod Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2993,15 +3067,15 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3061,15 +3135,15 @@ Checking test 056 fv3_ccpp_gfs_v16_debug results .... Test 056 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3129,15 +3203,15 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3197,15 +3271,76 @@ Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_debug_prod -Checking test 059 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_debug_prod +Checking test 059 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 059 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_debug_prod +Checking test 060 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 060 fv3_ccpp_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_nest_debug_prod +Checking test 061 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 061 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_debug_prod +Checking test 062 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3231,25 +3366,25 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3262,18 +3397,18 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gsd_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 062 fv3_ccpp_gsd_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3299,25 +3434,25 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3330,18 +3465,18 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_debug_prod -Checking test 061 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 063 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_debug_prod +Checking test 064 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3367,25 +3502,25 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3398,18 +3533,18 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 064 fv3_ccpp_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3435,25 +3570,25 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3466,18 +3601,18 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 065 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3503,25 +3638,25 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3534,18 +3669,18 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 066 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3602,13 +3737,13 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3620,12 +3755,74 @@ Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_prod -Checking test 066 cpld_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_prod +Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3673,12 +3870,12 @@ Checking test 066 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 066 cpld_control PASS +Test 070 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_prod -Checking test 067 cpld_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_prod +Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3726,12 +3923,12 @@ Checking test 067 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 067 cpld_restart PASS +Test 071 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_prod -Checking test 068 cpld_controlfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_prod +Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3779,12 +3976,12 @@ Checking test 068 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 068 cpld_controlfrac PASS +Test 072 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_prod -Checking test 069 cpld_restartfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_prod +Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3832,12 +4029,12 @@ Checking test 069 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_restartfrac PASS +Test 073 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_2threads_prod -Checking test 070 cpld_2threads results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_2threads_prod +Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3885,12 +4082,12 @@ Checking test 070 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_2threads PASS +Test 074 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_decomp_prod -Checking test 071 cpld_decomp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_decomp_prod +Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3938,12 +4135,12 @@ Checking test 071 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_decomp PASS +Test 075 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_satmedmf_prod -Checking test 072 cpld_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_satmedmf_prod +Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3991,12 +4188,12 @@ Checking test 072 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_satmedmf PASS +Test 076 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_ca_prod -Checking test 073 cpld_ca results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_ca_prod +Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4044,12 +4241,12 @@ Checking test 073 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_ca PASS +Test 077 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_c192_prod -Checking test 074 cpld_control_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c192_prod +Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4097,12 +4294,12 @@ Checking test 074 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 074 cpld_control_c192 PASS +Test 078 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_c192_prod -Checking test 075 cpld_restart_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c192_prod +Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4150,12 +4347,12 @@ Checking test 075 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 075 cpld_restart_c192 PASS +Test 079 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_c192_prod -Checking test 076 cpld_controlfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c192_prod +Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4203,12 +4400,12 @@ Checking test 076 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 076 cpld_controlfrac_c192 PASS +Test 080 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_c192_prod -Checking test 077 cpld_restartfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c192_prod +Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4256,12 +4453,12 @@ Checking test 077 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_restartfrac_c192 PASS +Test 081 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_c384_prod -Checking test 078 cpld_control_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c384_prod +Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4312,12 +4509,12 @@ Checking test 078 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 078 cpld_control_c384 PASS +Test 082 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_c384_prod -Checking test 079 cpld_restart_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c384_prod +Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4368,12 +4565,12 @@ Checking test 079 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 079 cpld_restart_c384 PASS +Test 083 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_c384_prod -Checking test 080 cpld_controlfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c384_prod +Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4424,12 +4621,12 @@ Checking test 080 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 080 cpld_controlfrac_c384 PASS +Test 084 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_c384_prod -Checking test 081 cpld_restartfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c384_prod +Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4480,12 +4677,12 @@ Checking test 081 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_restartfrac_c384 PASS +Test 085 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_bmark_prod -Checking test 082 cpld_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmark_prod +Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4536,12 +4733,12 @@ Checking test 082 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 082 cpld_bmark PASS +Test 086 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_bmark_prod -Checking test 083 cpld_restart_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmark_prod +Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4592,12 +4789,12 @@ Checking test 083 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 083 cpld_restart_bmark PASS +Test 087 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_bmarkfrac_prod -Checking test 084 cpld_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmarkfrac_prod +Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4648,12 +4845,12 @@ Checking test 084 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 084 cpld_bmarkfrac PASS +Test 088 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_bmarkfrac_prod -Checking test 085 cpld_restart_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmarkfrac_prod +Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4704,12 +4901,12 @@ Checking test 085 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_restart_bmarkfrac PASS +Test 089 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_debug_prod -Checking test 086 cpld_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debug_prod +Checking test 090 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4757,12 +4954,12 @@ Checking test 086 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 086 cpld_debug PASS +Test 090 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_debugfrac_prod -Checking test 087 cpld_debugfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debugfrac_prod +Checking test 091 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4810,87 +5007,87 @@ Checking test 087 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 087 cpld_debugfrac PASS +Test 091 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_control_cfsr -Checking test 088 datm_control_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_cfsr +Checking test 092 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 088 datm_control_cfsr PASS +Test 092 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_restart_cfsr -Checking test 089 datm_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_restart_cfsr +Checking test 093 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 089 datm_restart_cfsr PASS +Test 093 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_control_gefs -Checking test 090 datm_control_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_gefs +Checking test 094 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 090 datm_control_gefs PASS +Test 094 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_bulk_cfsr -Checking test 091 datm_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_cfsr +Checking test 095 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 091 datm_bulk_cfsr PASS +Test 095 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_bulk_gefs -Checking test 092 datm_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_gefs +Checking test 096 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 092 datm_bulk_gefs PASS +Test 096 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_mx025_cfsr -Checking test 093 datm_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_cfsr +Checking test 097 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 093 datm_mx025_cfsr PASS +Test 097 datm_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_mx025_gefs -Checking test 094 datm_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_gefs +Checking test 098 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 094 datm_mx025_gefs PASS +Test 098 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_debug_cfsr -Checking test 095 datm_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_debug_cfsr +Checking test 099 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 095 datm_debug_cfsr PASS +Test 099 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 12:36:16 EST 2021 -Elapsed time: 01h:23m:20s. Have a nice day! +Wed Feb 17 20:13:13 EST 2021 +Elapsed time: 01h:42m:18s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index a1091a96c2..50d1df6ef8 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,16 +1,16 @@ -Thu Feb 11 14:14:32 UTC 2021 +Wed Feb 17 20:45:37 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -50,15 +50,15 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Test 001 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -118,15 +118,15 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Test 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,15 +248,15 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -316,15 +316,15 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -384,15 +384,15 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -452,15 +452,15 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -520,15 +520,15 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -579,24 +579,24 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -612,15 +612,15 @@ Checking test 009 fv3_ccpp_gsd results .... Test 009 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -647,24 +647,24 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -680,15 +680,15 @@ Checking test 010 fv3_ccpp_thompson results .... Test 010 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -715,24 +715,24 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -748,15 +748,15 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -783,24 +783,24 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -816,15 +816,15 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -884,10 +884,10 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -902,9 +902,133 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_control_debug_prod -Checking test 015 fv3_ccpp_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_control_debug_prod +Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -929,18 +1053,86 @@ Checking test 015 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 015 fv3_ccpp_control_debug PASS +Test 017 fv3_ccpp_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_debug_prod +Checking test 019 fv3_ccpp_gfs_v16_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -997,18 +1189,18 @@ Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_gfs_v15p2_debug PASS +Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_debug_prod -Checking test 017 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1065,18 +1257,18 @@ Checking test 017 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_ccpp_gfs_v16_debug PASS +Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1133,18 +1325,18 @@ Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_multigases_prod +Checking test 022 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1201,18 +1393,171 @@ Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 022 fv3_ccpp_multigases PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_regional_control_debug_prod +Checking test 023 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 023 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_debug_prod +Checking test 025 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 025 fv3_ccpp_gsd_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_debug_prod +Checking test 026 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1239,24 +1584,24 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1269,24 +1614,86 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK +Test 026 fv3_ccpp_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1343,13 +1750,13 @@ Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -1361,9 +1768,71 @@ Checking test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 15:08:53 UTC 2021 -Elapsed time: 00h:54m:21s. Have a nice day! +Wed Feb 17 21:14:47 UTC 2021 +Elapsed time: 00h:29m:11s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 3b311cadc7..5cdfec543e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,16 +1,16 @@ -Thu Feb 11 14:11:41 UTC 2021 +Thu Feb 18 02:57:16 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -70,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -138,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -324,15 +324,15 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,15 +420,15 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -468,15 +468,15 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -564,15 +564,15 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -612,15 +612,15 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -680,15 +680,15 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -981,15 +981,15 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1030,15 +1030,15 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf006.nemsio .........OK Comparing dynf006.nemsio .........OK Comparing RESTART/coupler.res .........OK @@ -1079,15 +1079,15 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1113,25 +1113,25 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1153,15 +1153,15 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1187,25 +1187,25 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1221,47 +1221,47 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1277,56 +1277,56 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1344,30 +1344,30 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK Test 024 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1375,10 +1375,10 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -1386,65 +1386,15 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1481,18 +1431,18 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 028 fv3_ccpp_gfdlmp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1529,18 +1479,18 @@ Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 029 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1577,18 +1527,18 @@ Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1625,18 +1575,18 @@ Checking test 033 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 031 fv3_ccpp_csawmg PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1673,18 +1623,18 @@ Checking test 034 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 032 fv3_ccpp_satmedmf PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1721,42 +1671,42 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 033 fv3_ccpp_satmedmfq PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1769,18 +1719,18 @@ Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 034 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1790,25 +1740,25 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1821,42 +1771,42 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1875,18 +1825,18 @@ Checking test 038 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 036 fv3_ccpp_cpt PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1936,25 +1886,25 @@ Checking test 039 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1967,18 +1917,18 @@ Checking test 039 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 037 fv3_ccpp_gsd PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rap_prod +Checking test 038 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2004,25 +1954,25 @@ Checking test 040 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2035,18 +1985,18 @@ Checking test 040 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 038 fv3_ccpp_rap PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_hrrr_prod +Checking test 039 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2072,25 +2022,25 @@ Checking test 041 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2103,18 +2053,18 @@ Checking test 041 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 039 fv3_ccpp_hrrr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_prod +Checking test 040 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2140,25 +2090,25 @@ Checking test 042 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2171,18 +2121,18 @@ Checking test 042 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 040 fv3_ccpp_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_prod +Checking test 041 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2208,25 +2158,25 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2239,18 +2189,18 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 041 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_prod +Checking test 042 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2276,25 +2226,25 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2307,18 +2257,18 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 042 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_prod +Checking test 043 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2375,18 +2325,18 @@ Checking test 045 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_prod -Checking test 046 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 043 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_prod +Checking test 044 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2455,12 +2405,12 @@ Checking test 046 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16 PASS +Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_restart_prod -Checking test 047 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_restart_prod +Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2505,18 +2455,18 @@ Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 045 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_stochy_prod +Checking test 046 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2573,18 +2523,18 @@ Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 046 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2641,18 +2591,18 @@ Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2709,12 +2659,12 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2771,18 +2721,18 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_csawmg_prod +Checking test 050 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2819,18 +2769,18 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 050 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2855,34 +2805,170 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 051 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gocart_clm_prod +Checking test 052 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 052 fv3_ccpp_gocart_clm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_flake_prod +Checking test 053 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 053 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -2915,18 +3001,30 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gocart_clm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_flake_prod -Checking test 055 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2983,18 +3081,12 @@ Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3051,36 +3143,18 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_debug_prod Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3140,15 +3214,15 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3208,15 +3282,15 @@ Checking test 059 fv3_ccpp_gfs_v16_debug results .... Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3276,15 +3350,15 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3344,15 +3418,76 @@ Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_debug_prod +Checking test 062 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 062 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_debug_prod +Checking test 063 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 063 fv3_ccpp_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_nest_debug_prod +Checking test 064 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 064 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_debug_prod +Checking test 065 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3378,25 +3513,25 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3409,18 +3544,18 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 065 fv3_ccpp_gsd_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3446,25 +3581,25 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3477,18 +3612,18 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 066 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_debug_prod +Checking test 067 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3514,25 +3649,25 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3545,18 +3680,18 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 067 fv3_ccpp_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3582,25 +3717,25 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3613,18 +3748,18 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 068 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3650,25 +3785,25 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3681,18 +3816,18 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 069 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3749,13 +3884,13 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3767,12 +3902,74 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_prod -Checking test 069 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_prod +Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3820,12 +4017,12 @@ Checking test 069 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control PASS +Test 073 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_prod -Checking test 070 cpld_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_prod +Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3873,12 +4070,12 @@ Checking test 070 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart PASS +Test 074 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_prod +Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3926,12 +4123,12 @@ Checking test 071 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac PASS +Test 075 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_prod +Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3979,12 +4176,12 @@ Checking test 072 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restartfrac PASS +Test 076 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_2threads_prod -Checking test 073 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_2threads_prod +Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4032,12 +4229,12 @@ Checking test 073 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_2threads PASS +Test 077 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_decomp_prod -Checking test 074 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_decomp_prod +Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4085,12 +4282,12 @@ Checking test 074 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_decomp PASS +Test 078 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_satmedmf_prod +Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4138,12 +4335,12 @@ Checking test 075 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_satmedmf PASS +Test 079 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_ca_prod -Checking test 076 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_ca_prod +Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4191,12 +4388,12 @@ Checking test 076 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_ca PASS +Test 080 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c192_prod +Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4244,12 +4441,12 @@ Checking test 077 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_control_c192 PASS +Test 081 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c192_prod +Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4297,12 +4494,12 @@ Checking test 078 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_restart_c192 PASS +Test 082 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c192_prod +Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4350,12 +4547,12 @@ Checking test 079 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_controlfrac_c192 PASS +Test 083 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c192_prod +Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4403,12 +4600,12 @@ Checking test 080 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_restartfrac_c192 PASS +Test 084 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c384_prod +Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4459,12 +4656,12 @@ Checking test 081 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_control_c384 PASS +Test 085 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c384_prod +Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4515,12 +4712,12 @@ Checking test 082 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_restart_c384 PASS +Test 086 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c384_prod +Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4571,12 +4768,12 @@ Checking test 083 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_controlfrac_c384 PASS +Test 087 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c384_prod +Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4627,12 +4824,12 @@ Checking test 084 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_restartfrac_c384 PASS +Test 088 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmark_prod -Checking test 085 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_prod +Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4683,12 +4880,12 @@ Checking test 085 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark PASS +Test 089 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmark_prod +Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4739,12 +4936,12 @@ Checking test 086 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_restart_bmark PASS +Test 090 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_prod +Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4795,12 +4992,12 @@ Checking test 087 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_bmarkfrac PASS +Test 091 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_prod +Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4851,12 +5048,12 @@ Checking test 088 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_restart_bmarkfrac PASS +Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_v16_prod +Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4907,12 +5104,12 @@ Checking test 089 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_bmarkfrac_v16 PASS +Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_v16_prod +Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4963,12 +5160,12 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_restart_bmarkfrac_v16 PASS +Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_wave_prod +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5022,12 +5219,12 @@ Checking test 091 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmark_wave PASS +Test 095 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_prod +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5081,12 +5278,12 @@ Checking test 092 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_bmarkfrac_wave PASS +Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_v16_prod +Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5140,12 +5337,12 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_wave_v16 PASS +Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_wave_prod -Checking test 094 cpld_control_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_wave_prod +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5196,12 +5393,12 @@ Checking test 094 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 094 cpld_control_wave PASS +Test 098 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_debug_prod -Checking test 095 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debug_prod +Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5249,12 +5446,12 @@ Checking test 095 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debug PASS +Test 099 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_debugfrac_prod -Checking test 096 cpld_debugfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debugfrac_prod +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5302,87 +5499,87 @@ Checking test 096 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 096 cpld_debugfrac PASS +Test 100 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_control_cfsr -Checking test 097 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_cfsr +Checking test 101 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_cfsr PASS +Test 101 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_restart_cfsr -Checking test 098 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_restart_cfsr +Checking test 102 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_restart_cfsr PASS +Test 102 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_control_gefs -Checking test 099 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_gefs +Checking test 103 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_control_gefs PASS +Test 103 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_bulk_cfsr -Checking test 100 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_cfsr +Checking test 104 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_cfsr PASS +Test 104 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_bulk_gefs -Checking test 101 datm_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_gefs +Checking test 105 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_bulk_gefs PASS +Test 105 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_mx025_cfsr -Checking test 102 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_cfsr +Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_mx025_gefs -Checking test 103 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_gefs +Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_debug_cfsr -Checking test 104 datm_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_debug_cfsr +Checking test 108 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 104 datm_debug_cfsr PASS +Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 15:48:12 UTC 2021 -Elapsed time: 01h:36m:32s. Have a nice day! +Thu Feb 18 04:38:47 UTC 2021 +Elapsed time: 01h:41m:32s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index b74f1cb04f..178216a8c5 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,16 +1,16 @@ -Thu Feb 11 14:36:40 GMT 2021 +Wed Feb 17 22:55:09 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -70,83 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc ............ALT CHECK......OK - Comparing phyf024.tile2.nc ............ALT CHECK......OK - Comparing phyf024.tile3.nc ............ALT CHECK......OK - Comparing phyf024.tile4.nc ............ALT CHECK......OK - Comparing phyf024.tile5.nc ............ALT CHECK......OK - Comparing phyf024.tile6.nc ............ALT CHECK......OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc ............ALT CHECK......OK - Comparing dynf024.tile2.nc ............ALT CHECK......OK - Comparing dynf024.tile3.nc ............ALT CHECK......OK - Comparing dynf024.tile4.nc ............ALT CHECK......OK - Comparing dynf024.tile5.nc ............ALT CHECK......OK - Comparing dynf024.tile6.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile6.nc ............ALT CHECK......OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_2threads_prod +Checking test 002 fv3_ccpp_2threads results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -203,12 +135,12 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS +Test 002 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_restart_prod +Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -253,18 +185,18 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 003 fv3_ccpp_restart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_read_inc_prod +Checking test 004 fv3_ccpp_read_inc results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -321,18 +253,18 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 004 fv3_ccpp_read_inc PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -369,18 +301,18 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -417,18 +349,18 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 006 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -465,18 +397,18 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -513,18 +445,18 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -561,18 +493,18 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 009 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -609,18 +541,18 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stochy_prod +Checking test 011 fv3_ccpp_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -677,18 +609,18 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 011 fv3_ccpp_stochy PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_ca_prod +Checking test 012 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -745,18 +677,18 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 012 fv3_ccpp_ca PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lndp_prod +Checking test 013 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -813,18 +745,18 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 013 fv3_ccpp_lndp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_iau_prod +Checking test 014 fv3_ccpp_iau results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -881,18 +813,18 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 014 fv3_ccpp_iau PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lheatstrg_prod +Checking test 015 fv3_ccpp_lheatstrg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -929,18 +861,18 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 015 fv3_ccpp_lheatstrg PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_multigases_prod +Checking test 016 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -966,25 +898,25 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1003,18 +935,18 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 017 fv3_ccpp_multigases PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 016 fv3_ccpp_multigases PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_32bit_prod +Checking test 017 fv3_ccpp_control_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1040,25 +972,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1071,50 +1003,50 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_control_32bit PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK +Test 017 fv3_ccpp_control_32bit PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_prod +Checking test 018 fv3_ccpp_stretched results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1127,59 +1059,59 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_stretched PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK +Test 018 fv3_ccpp_stretched PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_prod +Checking test 019 fv3_ccpp_stretched_nest results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1194,110 +1126,60 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 020 fv3_ccpp_stretched_nest PASS +Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_prod +Checking test 020 fv3_ccpp_regional_control results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 021 fv3_ccpp_regional_control PASS +Test 020 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK -Test 022 fv3_ccpp_regional_restart PASS +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_restart_prod +Checking test 021 fv3_ccpp_regional_restart results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK +Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_prod +Checking test 022 fv3_ccpp_regional_quilt results .... + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 023 fv3_ccpp_regional_quilt PASS +Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_control_debug_prod -Checking test 025 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 025 fv3_ccpp_control_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_stretched_nest_debug_prod -Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK -Test 026 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_prod +Checking test 024 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1322,30 +1204,30 @@ Checking test 030 fv3_ccpp_csawmg results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_csawmg PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 024 fv3_ccpp_gfdlmp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1370,30 +1252,78 @@ Checking test 031 fv3_ccpp_satmedmf results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK +Test 025 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 026 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_csawmg_prod +Checking test 027 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1430,142 +1360,90 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmfq PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 027 fv3_ccpp_csawmg PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmf_prod +Checking test 028 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 028 fv3_ccpp_satmedmf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmfq_prod +Checking test 029 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1578,27 +1456,175 @@ Checking test 035 fv3_ccpp_cpt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK +Test 029 fv3_ccpp_satmedmfq PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_32bit_prod +Checking test 030 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_cpt PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK +Test 030 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_cpt_prod +Checking test 032 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 032 fv3_ccpp_cpt PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_prod +Checking test 033 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK @@ -1645,25 +1671,25 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1676,18 +1702,18 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_gsd PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 033 fv3_ccpp_gsd PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_prod +Checking test 034 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1713,25 +1739,25 @@ Checking test 037 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1744,18 +1770,18 @@ Checking test 037 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_thompson PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 034 fv3_ccpp_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_no_aero_prod +Checking test 035 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1781,25 +1807,25 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1812,18 +1838,18 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v15p2_prod -Checking test 039 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 035 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_prod +Checking test 036 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1880,18 +1906,18 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 039 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_prod -Checking test 040 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 036 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_prod +Checking test 037 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1960,12 +1986,12 @@ Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v16 PASS +Test 037 fv3_ccpp_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_restart_prod -Checking test 041 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_restart_prod +Checking test 038 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2010,18 +2036,18 @@ Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_stochy_prod -Checking test 042 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 038 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_stochy_prod +Checking test 039 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2078,18 +2104,18 @@ Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 039 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2146,18 +2172,18 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 040 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2214,12 +2240,12 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 041 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2276,18 +2302,18 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfsv16_csawmg_prod -Checking test 046 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmg_prod +Checking test 043 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2324,18 +2350,18 @@ Checking test 046 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 043 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 044 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2372,18 +2398,18 @@ Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gocart_clm_prod -Checking test 048 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 044 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gocart_clm_prod +Checking test 045 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2420,18 +2446,18 @@ Checking test 048 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gocart_clm PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_flake_prod -Checking test 049 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 045 fv3_ccpp_gocart_clm PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_flake_prod +Checking test 046 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2488,18 +2514,18 @@ Checking test 049 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 046 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2556,13 +2582,13 @@ Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -2574,18 +2600,142 @@ Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2642,18 +2792,18 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_debug_prod -Checking test 053 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 051 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_debug_prod +Checking test 052 fv3_ccpp_gfs_v16_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2710,18 +2860,18 @@ Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v16_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 052 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2778,18 +2928,18 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2846,18 +2996,79 @@ Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gsd_debug_prod -Checking test 056 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_debug_prod +Checking test 055 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 055 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_debug_prod +Checking test 056 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 056 fv3_ccpp_control_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_debug_prod +Checking test 057 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 057 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_debug_prod +Checking test 058 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2883,25 +3094,25 @@ Checking test 056 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2914,18 +3125,18 @@ Checking test 056 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_gsd_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 058 fv3_ccpp_gsd_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2951,25 +3162,25 @@ Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2982,18 +3193,18 @@ Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_thompson_debug_prod -Checking test 058 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 059 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_debug_prod +Checking test 060 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3019,25 +3230,25 @@ Checking test 058 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3050,18 +3261,18 @@ Checking test 058 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_thompson_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 060 fv3_ccpp_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3087,25 +3298,25 @@ Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3118,18 +3329,18 @@ Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 061 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3155,25 +3366,25 @@ Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3186,18 +3397,18 @@ Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 062 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3254,13 +3465,13 @@ Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3272,9 +3483,71 @@ Checking test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 16:35:37 GMT 2021 -Elapsed time: 01h:58m:58s. Have a nice day! +Thu Feb 18 00:55:53 GMT 2021 +Elapsed time: 02h:00m:45s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b81151a515..b150da682d 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,16 +1,16 @@ -Thu Feb 11 08:08:46 CST 2021 +Thu Feb 18 10:57:36 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -70,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -138,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -324,15 +324,15 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,19 +420,19 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -468,15 +468,15 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -564,15 +564,15 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -612,15 +612,15 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -680,15 +680,15 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -981,15 +981,15 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1030,15 +1030,15 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf006.nemsio .........OK Comparing dynf006.nemsio .........OK Comparing RESTART/coupler.res .........OK @@ -1079,15 +1079,15 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1113,25 +1113,25 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1153,15 +1153,15 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1187,25 +1187,25 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1221,47 +1221,47 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1277,56 +1277,56 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1344,30 +1344,30 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1375,10 +1375,10 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -1386,65 +1386,15 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_debug_prod -Checking test 028 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_nest_debug_prod -Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1481,18 +1431,18 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 028 fv3_ccpp_gfdlmp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1529,18 +1479,18 @@ Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 029 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1577,18 +1527,18 @@ Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1625,18 +1575,18 @@ Checking test 033 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 031 fv3_ccpp_csawmg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1673,18 +1623,18 @@ Checking test 034 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 032 fv3_ccpp_satmedmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1721,42 +1671,42 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_satmedmfq PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 033 fv3_ccpp_satmedmfq PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1769,18 +1719,18 @@ Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 034 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1790,25 +1740,25 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1821,42 +1771,42 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1875,18 +1825,18 @@ Checking test 038 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_cpt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 036 fv3_ccpp_cpt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1936,25 +1886,25 @@ Checking test 039 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1967,18 +1917,18 @@ Checking test 039 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gsd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 037 fv3_ccpp_gsd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rap_prod +Checking test 038 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2004,25 +1954,25 @@ Checking test 040 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2035,18 +1985,18 @@ Checking test 040 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_rap PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 038 fv3_ccpp_rap PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_hrrr_prod +Checking test 039 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2072,25 +2022,25 @@ Checking test 041 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2103,18 +2053,18 @@ Checking test 041 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_hrrr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 039 fv3_ccpp_hrrr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_prod +Checking test 040 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2140,25 +2090,25 @@ Checking test 042 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2171,18 +2121,18 @@ Checking test 042 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 040 fv3_ccpp_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_prod +Checking test 041 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2208,25 +2158,25 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2239,18 +2189,18 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 041 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_prod +Checking test 042 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2276,27 +2226,27 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK @@ -2307,18 +2257,18 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 042 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_prod +Checking test 043 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2375,18 +2325,18 @@ Checking test 045 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_prod -Checking test 046 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 043 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_prod +Checking test 044 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2455,12 +2405,12 @@ Checking test 046 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16 PASS +Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_restart_prod -Checking test 047 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_restart_prod +Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2505,18 +2455,18 @@ Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 045 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_stochy_prod +Checking test 046 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2573,18 +2523,18 @@ Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 046 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2641,18 +2591,18 @@ Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2709,12 +2659,12 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2771,18 +2721,18 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_csawmg_prod +Checking test 050 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2819,18 +2769,18 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 050 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2867,18 +2817,18 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 051 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gocart_clm_prod +Checking test 052 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2915,18 +2865,18 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gocart_clm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_flake_prod -Checking test 055 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 052 fv3_ccpp_gocart_clm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_flake_prod +Checking test 053 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2983,18 +2933,18 @@ Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 053 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3051,13 +3001,13 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -3069,18 +3019,142 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_debug_prod Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3140,15 +3214,15 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3208,15 +3282,15 @@ Checking test 059 fv3_ccpp_gfs_v16_debug results .... Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3276,15 +3350,15 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3344,15 +3418,76 @@ Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_debug_prod +Checking test 062 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 062 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_debug_prod +Checking test 063 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 063 fv3_ccpp_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_nest_debug_prod +Checking test 064 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 064 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_debug_prod +Checking test 065 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3378,25 +3513,25 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3409,18 +3544,18 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 065 fv3_ccpp_gsd_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3446,25 +3581,25 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3477,18 +3612,18 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 066 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_debug_prod +Checking test 067 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3514,25 +3649,25 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3545,18 +3680,18 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 067 fv3_ccpp_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3582,25 +3717,25 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3613,18 +3748,18 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 068 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3650,25 +3785,25 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3681,18 +3816,18 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 069 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3749,13 +3884,13 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3767,12 +3902,74 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_prod -Checking test 069 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_prod +Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3820,12 +4017,12 @@ Checking test 069 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control PASS +Test 073 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_prod -Checking test 070 cpld_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_prod +Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3873,12 +4070,12 @@ Checking test 070 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart PASS +Test 074 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_prod +Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3926,12 +4123,12 @@ Checking test 071 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac PASS +Test 075 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_prod +Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3979,12 +4176,12 @@ Checking test 072 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_restartfrac PASS +Test 076 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_2threads_prod -Checking test 073 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_2threads_prod +Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4032,12 +4229,12 @@ Checking test 073 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_2threads PASS +Test 077 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_decomp_prod -Checking test 074 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_decomp_prod +Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4085,12 +4282,12 @@ Checking test 074 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_decomp PASS +Test 078 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_satmedmf_prod +Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4138,12 +4335,12 @@ Checking test 075 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_satmedmf PASS +Test 079 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_ca_prod -Checking test 076 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_ca_prod +Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4191,12 +4388,12 @@ Checking test 076 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_ca PASS +Test 080 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c192_prod +Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4244,12 +4441,12 @@ Checking test 077 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_control_c192 PASS +Test 081 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c192_prod +Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4297,12 +4494,12 @@ Checking test 078 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_restart_c192 PASS +Test 082 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c192_prod +Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4350,12 +4547,12 @@ Checking test 079 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_controlfrac_c192 PASS +Test 083 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c192_prod +Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4403,12 +4600,12 @@ Checking test 080 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_restartfrac_c192 PASS +Test 084 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c384_prod +Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4459,12 +4656,12 @@ Checking test 081 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_control_c384 PASS +Test 085 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c384_prod +Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4515,12 +4712,12 @@ Checking test 082 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_restart_c384 PASS +Test 086 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c384_prod +Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4571,12 +4768,12 @@ Checking test 083 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_controlfrac_c384 PASS +Test 087 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c384_prod +Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4627,12 +4824,12 @@ Checking test 084 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_restartfrac_c384 PASS +Test 088 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmark_prod -Checking test 085 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_prod +Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4683,12 +4880,12 @@ Checking test 085 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_bmark PASS +Test 089 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmark_prod +Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4739,12 +4936,12 @@ Checking test 086 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_restart_bmark PASS +Test 090 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_prod +Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4795,12 +4992,12 @@ Checking test 087 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_bmarkfrac PASS +Test 091 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_prod +Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4851,12 +5048,12 @@ Checking test 088 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_restart_bmarkfrac PASS +Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_v16_prod +Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4907,12 +5104,12 @@ Checking test 089 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_bmarkfrac_v16 PASS +Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_v16_prod +Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4963,12 +5160,12 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_restart_bmarkfrac_v16 PASS +Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_wave_prod +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5022,12 +5219,12 @@ Checking test 091 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmark_wave PASS +Test 095 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_prod +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5081,12 +5278,12 @@ Checking test 092 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_bmarkfrac_wave PASS +Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_v16_prod +Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5140,12 +5337,12 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_wave_v16 PASS +Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_wave_prod -Checking test 094 cpld_control_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_wave_prod +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5196,12 +5393,12 @@ Checking test 094 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 094 cpld_control_wave PASS +Test 098 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_debug_prod -Checking test 095 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debug_prod +Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5249,12 +5446,12 @@ Checking test 095 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debug PASS +Test 099 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_debugfrac_prod -Checking test 096 cpld_debugfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debugfrac_prod +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5302,87 +5499,87 @@ Checking test 096 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 096 cpld_debugfrac PASS +Test 100 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_control_cfsr -Checking test 097 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_cfsr +Checking test 101 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_cfsr PASS +Test 101 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_restart_cfsr -Checking test 098 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_restart_cfsr +Checking test 102 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_restart_cfsr PASS +Test 102 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_control_gefs -Checking test 099 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_gefs +Checking test 103 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_control_gefs PASS +Test 103 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_bulk_cfsr -Checking test 100 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_cfsr +Checking test 104 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_cfsr PASS +Test 104 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_bulk_gefs -Checking test 101 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_gefs +Checking test 105 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_bulk_gefs PASS +Test 105 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_mx025_cfsr -Checking test 102 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_cfsr +Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_mx025_gefs -Checking test 103 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_gefs +Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_debug_cfsr -Checking test 104 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_debug_cfsr +Checking test 108 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 104 datm_debug_cfsr PASS +Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 09:25:39 CST 2021 -Elapsed time: 01h:16m:54s. Have a nice day! +Thu Feb 18 21:22:48 CST 2021 +Elapsed time: 10h:25m:12s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 231e912a3e..102d04a38d 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,16 +1,16 @@ -Thu Feb 11 15:50:22 UTC 2021 +Thu Feb 18 16:08:52 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -70,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -138,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -324,15 +324,15 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,15 +420,15 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -468,15 +468,15 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -564,15 +564,15 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -612,15 +612,15 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -680,15 +680,15 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -966,25 +966,25 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1006,15 +1006,15 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1040,25 +1040,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1074,47 +1074,47 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1130,56 +1130,56 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1197,30 +1197,30 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1228,10 +1228,10 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1239,65 +1239,15 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_control_debug_prod -Checking test 025 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 025 fv3_ccpp_control_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stretched_nest_debug_prod -Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK -Test 026 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1334,18 +1284,18 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 025 fv3_ccpp_gfdlmp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1382,18 +1332,18 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 026 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1430,18 +1380,18 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 027 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1478,18 +1428,18 @@ Checking test 030 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_csawmg PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 028 fv3_ccpp_csawmg PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1526,18 +1476,18 @@ Checking test 031 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmf PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 029 fv3_ccpp_satmedmf PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1574,42 +1524,42 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmfq PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 030 fv3_ccpp_satmedmfq PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1622,18 +1572,18 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 031 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1643,25 +1593,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1674,42 +1624,42 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1728,18 +1678,18 @@ Checking test 035 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_cpt PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 033 fv3_ccpp_cpt PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1789,25 +1739,25 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1820,18 +1770,18 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_gsd PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 034 fv3_ccpp_gsd PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rap_prod +Checking test 035 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1857,25 +1807,25 @@ Checking test 037 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1888,18 +1838,18 @@ Checking test 037 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_rap PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 035 fv3_ccpp_rap PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_hrrr_prod +Checking test 036 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1925,25 +1875,25 @@ Checking test 038 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1956,18 +1906,18 @@ Checking test 038 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_hrrr PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 036 fv3_ccpp_hrrr PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_prod +Checking test 037 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1993,25 +1943,25 @@ Checking test 039 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2024,18 +1974,18 @@ Checking test 039 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_thompson PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 037 fv3_ccpp_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_no_aero_prod +Checking test 038 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2061,25 +2011,25 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2092,18 +2042,18 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 038 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2129,25 +2079,25 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2160,18 +2110,18 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_prod -Checking test 042 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 039 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_prod +Checking test 040 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2228,18 +2178,18 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_prod -Checking test 043 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 040 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_prod +Checking test 041 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2308,12 +2258,12 @@ Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16 PASS +Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_restart_prod -Checking test 044 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_restart_prod +Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2358,18 +2308,18 @@ Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 042 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_stochy_prod +Checking test 043 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2426,18 +2376,18 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 043 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2494,18 +2444,18 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2562,12 +2512,12 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2624,18 +2574,18 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmg_prod +Checking test 047 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2672,18 +2622,18 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 047 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2708,34 +2658,170 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gocart_clm_prod +Checking test 049 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 049 fv3_ccpp_gocart_clm PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_flake_prod +Checking test 050 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -2768,18 +2854,30 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gocart_clm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_flake_prod -Checking test 052 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2836,18 +2934,12 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2904,36 +2996,18 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_debug_prod Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2993,15 +3067,15 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3061,15 +3135,15 @@ Checking test 056 fv3_ccpp_gfs_v16_debug results .... Test 056 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3129,15 +3203,15 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3197,15 +3271,76 @@ Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gsd_debug_prod -Checking test 059 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_debug_prod +Checking test 059 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 059 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_debug_prod +Checking test 060 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 060 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_nest_debug_prod +Checking test 061 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 061 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_debug_prod +Checking test 062 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3231,25 +3366,25 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3262,18 +3397,18 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gsd_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 062 fv3_ccpp_gsd_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3299,25 +3434,25 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3330,18 +3465,18 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_debug_prod -Checking test 061 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 063 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_debug_prod +Checking test 064 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3367,25 +3502,25 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3398,18 +3533,18 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_thompson_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 064 fv3_ccpp_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3435,25 +3570,25 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3466,18 +3601,18 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 065 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3503,25 +3638,25 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3534,18 +3669,18 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 066 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3602,13 +3737,13 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3620,9 +3755,71 @@ Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 16:28:04 UTC 2021 -Elapsed time: 00h:37m:42s. Have a nice day! +Thu Feb 18 16:51:34 UTC 2021 +Elapsed time: 00h:42m:42s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index b65c53c604..4dafe6fe6b 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,16 +1,16 @@ -Thu Feb 11 15:48:05 UTC 2021 +Thu Feb 18 21:24:50 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -70,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -138,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -206,8 +206,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -324,15 +324,15 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,18 +420,18 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -468,15 +468,15 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -564,15 +564,15 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -612,15 +612,15 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -680,15 +680,15 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -981,15 +981,15 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1030,15 +1030,15 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1064,25 +1064,25 @@ Checking test 019 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1104,15 +1104,15 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_32bit_prod Checking test 020 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1138,25 +1138,25 @@ Checking test 020 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1172,47 +1172,47 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1228,56 +1228,56 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_nest_prod Checking test 022 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1295,30 +1295,30 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1326,10 +1326,10 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -1337,65 +1337,15 @@ Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_control_debug_prod -Checking test 027 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 027 fv3_ccpp_control_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stretched_nest_debug_prod -Checking test 028 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK -Test 028 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmp_prod -Checking test 029 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmp_prod +Checking test 027 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1432,18 +1382,18 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 027 fv3_ccpp_gfdlmp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1480,18 +1430,18 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 028 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1528,18 +1478,18 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_csawmg_prod -Checking test 032 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 029 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_csawmg_prod +Checking test 030 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1576,18 +1526,18 @@ Checking test 032 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_csawmg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_satmedmf_prod -Checking test 033 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 030 fv3_ccpp_csawmg PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_satmedmf_prod +Checking test 031 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1624,18 +1574,18 @@ Checking test 033 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_satmedmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_satmedmfq_prod -Checking test 034 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 031 fv3_ccpp_satmedmf PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_satmedmfq_prod +Checking test 032 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1672,42 +1622,42 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_satmedmfq PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmp_32bit_prod -Checking test 035 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 032 fv3_ccpp_satmedmfq PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmp_32bit_prod +Checking test 033 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1720,18 +1670,18 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 033 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1741,25 +1691,25 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1772,42 +1722,42 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_cpt_prod -Checking test 037 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_cpt_prod +Checking test 035 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1826,18 +1776,18 @@ Checking test 037 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_cpt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gsd_prod -Checking test 038 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 035 fv3_ccpp_cpt PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_prod +Checking test 036 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1887,25 +1837,25 @@ Checking test 038 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1918,18 +1868,18 @@ Checking test 038 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_gsd PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_rap_prod -Checking test 039 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 036 fv3_ccpp_gsd PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rap_prod +Checking test 037 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1955,25 +1905,25 @@ Checking test 039 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1986,18 +1936,18 @@ Checking test 039 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_rap PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_hrrr_prod -Checking test 040 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 037 fv3_ccpp_rap PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_hrrr_prod +Checking test 038 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2023,25 +1973,25 @@ Checking test 040 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2054,18 +2004,18 @@ Checking test 040 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_hrrr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_prod -Checking test 041 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 038 fv3_ccpp_hrrr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_prod +Checking test 039 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2091,25 +2041,25 @@ Checking test 041 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2122,18 +2072,18 @@ Checking test 041 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_thompson PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_no_aero_prod -Checking test 042 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 039 fv3_ccpp_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_no_aero_prod +Checking test 040 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2159,25 +2109,25 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2190,18 +2140,18 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_rrfs_v1beta_prod -Checking test 043 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 040 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rrfs_v1beta_prod +Checking test 041 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2227,28 +2177,28 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK @@ -2258,18 +2208,18 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_prod -Checking test 044 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 041 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_prod +Checking test 042 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2326,18 +2276,18 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_prod -Checking test 045 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 042 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_prod +Checking test 043 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2406,12 +2356,12 @@ Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16 PASS +Test 043 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_restart_prod -Checking test 046 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_restart_prod +Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2456,18 +2406,18 @@ Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_stochy_prod -Checking test 047 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 044 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_stochy_prod +Checking test 045 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2524,18 +2474,18 @@ Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 045 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2592,18 +2542,18 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2660,12 +2610,12 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2722,18 +2672,18 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfsv16_csawmg_prod -Checking test 051 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_csawmg_prod +Checking test 049 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2770,18 +2720,18 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 049 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2818,18 +2768,18 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gocart_clm_prod -Checking test 053 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 050 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gocart_clm_prod +Checking test 051 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2866,18 +2816,18 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gocart_clm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_flake_prod -Checking test 054 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 051 fv3_ccpp_gocart_clm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_flake_prod +Checking test 052 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2934,18 +2884,18 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 052 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3002,13 +2952,13 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -3020,18 +2970,142 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3091,15 +3165,15 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_debug_prod Checking test 058 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3159,15 +3233,15 @@ Checking test 058 fv3_ccpp_gfs_v16_debug results .... Test 058 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3227,15 +3301,15 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3295,15 +3369,76 @@ Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gsd_debug_prod -Checking test 061 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_debug_prod +Checking test 061 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 061 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_debug_prod +Checking test 062 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 062 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_nest_debug_prod +Checking test 063 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 063 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_debug_prod +Checking test 064 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3329,25 +3464,25 @@ Checking test 061 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3360,18 +3495,18 @@ Checking test 061 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gsd_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 064 fv3_ccpp_gsd_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3397,25 +3532,25 @@ Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3428,18 +3563,18 @@ Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_debug_prod -Checking test 063 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 065 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_debug_prod +Checking test 066 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3465,25 +3600,25 @@ Checking test 063 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3496,18 +3631,18 @@ Checking test 063 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_thompson_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 066 fv3_ccpp_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3533,25 +3668,25 @@ Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3564,18 +3699,18 @@ Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 067 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3601,25 +3736,25 @@ Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3632,18 +3767,18 @@ Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile3.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile4.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile5.nc ............ALT CHECK......OK - Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK +Test 068 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3700,13 +3835,13 @@ Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3718,12 +3853,74 @@ Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_prod -Checking test 068 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_prod +Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3771,12 +3968,12 @@ Checking test 068 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 068 cpld_control PASS +Test 072 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_prod -Checking test 069 cpld_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_prod +Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3824,12 +4021,12 @@ Checking test 069 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_restart PASS +Test 073 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_controlfrac_prod -Checking test 070 cpld_controlfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_prod +Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3877,12 +4074,12 @@ Checking test 070 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_controlfrac PASS +Test 074 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restartfrac_prod -Checking test 071 cpld_restartfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_prod +Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3930,12 +4127,12 @@ Checking test 071 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_restartfrac PASS +Test 075 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_2threads_prod -Checking test 072 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_2threads_prod +Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3983,12 +4180,12 @@ Checking test 072 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_2threads PASS +Test 076 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_decomp_prod -Checking test 073 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_decomp_prod +Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4036,12 +4233,12 @@ Checking test 073 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_decomp PASS +Test 077 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_satmedmf_prod -Checking test 074 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_satmedmf_prod +Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4089,12 +4286,12 @@ Checking test 074 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_satmedmf PASS +Test 078 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_ca_prod -Checking test 075 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_ca_prod +Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4142,12 +4339,12 @@ Checking test 075 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_ca PASS +Test 079 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_c192_prod -Checking test 076 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c192_prod +Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4195,12 +4392,12 @@ Checking test 076 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 076 cpld_control_c192 PASS +Test 080 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_c192_prod -Checking test 077 cpld_restart_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c192_prod +Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4248,12 +4445,12 @@ Checking test 077 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_restart_c192 PASS +Test 081 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_controlfrac_c192_prod -Checking test 078 cpld_controlfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c192_prod +Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4301,12 +4498,12 @@ Checking test 078 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_controlfrac_c192 PASS +Test 082 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restartfrac_c192_prod -Checking test 079 cpld_restartfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c192_prod +Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4354,12 +4551,12 @@ Checking test 079 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_restartfrac_c192 PASS +Test 083 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_c384_prod -Checking test 080 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c384_prod +Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4410,12 +4607,12 @@ Checking test 080 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 080 cpld_control_c384 PASS +Test 084 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_c384_prod -Checking test 081 cpld_restart_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c384_prod +Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4466,12 +4663,12 @@ Checking test 081 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_restart_c384 PASS +Test 085 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_controlfrac_c384_prod -Checking test 082 cpld_controlfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c384_prod +Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4522,12 +4719,12 @@ Checking test 082 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_controlfrac_c384 PASS +Test 086 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restartfrac_c384_prod -Checking test 083 cpld_restartfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c384_prod +Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4578,12 +4775,12 @@ Checking test 083 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_restartfrac_c384 PASS +Test 087 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmark_prod -Checking test 084 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_prod +Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4634,12 +4831,12 @@ Checking test 084 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 084 cpld_bmark PASS +Test 088 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_bmark_prod -Checking test 085 cpld_restart_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmark_prod +Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4690,12 +4887,12 @@ Checking test 085 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_restart_bmark PASS +Test 089 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_prod -Checking test 086 cpld_bmarkfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_prod +Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4746,12 +4943,12 @@ Checking test 086 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_bmarkfrac PASS +Test 090 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_bmarkfrac_prod -Checking test 087 cpld_restart_bmarkfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_prod +Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4802,12 +4999,12 @@ Checking test 087 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_restart_bmarkfrac PASS +Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_v16_prod -Checking test 088 cpld_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_v16_prod +Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4858,12 +5055,12 @@ Checking test 088 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 088 cpld_bmarkfrac_v16 PASS +Test 092 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_bmarkfrac_v16_prod -Checking test 089 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_v16_prod +Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4914,12 +5111,12 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 089 cpld_restart_bmarkfrac_v16 PASS +Test 093 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmark_wave_prod -Checking test 090 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_wave_prod +Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4973,12 +5170,12 @@ Checking test 090 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 090 cpld_bmark_wave PASS +Test 094 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_wave_prod -Checking test 091 cpld_bmarkfrac_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_prod +Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5032,12 +5229,12 @@ Checking test 091 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmarkfrac_wave PASS +Test 095 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_wave_v16_prod -Checking test 092 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_v16_prod +Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5091,12 +5288,12 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 092 cpld_bmarkfrac_wave_v16 PASS +Test 096 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_wave_prod -Checking test 093 cpld_control_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_wave_prod +Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5147,12 +5344,12 @@ Checking test 093 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 093 cpld_control_wave PASS +Test 097 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_debug_prod -Checking test 094 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debug_prod +Checking test 098 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5200,12 +5397,12 @@ Checking test 094 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 094 cpld_debug PASS +Test 098 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_debugfrac_prod -Checking test 095 cpld_debugfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debugfrac_prod +Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5253,87 +5450,87 @@ Checking test 095 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 095 cpld_debugfrac PASS +Test 099 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_control_cfsr -Checking test 096 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_cfsr +Checking test 100 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_control_cfsr PASS +Test 100 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_restart_cfsr -Checking test 097 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_restart_cfsr +Checking test 101 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_restart_cfsr PASS +Test 101 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_control_gefs -Checking test 098 datm_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_gefs +Checking test 102 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_control_gefs PASS +Test 102 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_bulk_cfsr -Checking test 099 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_cfsr +Checking test 103 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_bulk_cfsr PASS +Test 103 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_bulk_gefs -Checking test 100 datm_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_gefs +Checking test 104 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_bulk_gefs PASS +Test 104 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_mx025_cfsr -Checking test 101 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_cfsr +Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_mx025_cfsr PASS +Test 105 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_mx025_gefs -Checking test 102 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_gefs +Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_mx025_gefs PASS +Test 106 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_debug_cfsr -Checking test 103 datm_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_debug_cfsr +Checking test 107 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 103 datm_debug_cfsr PASS +Test 107 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 12 04:23:36 UTC 2021 -Elapsed time: 12h:35m:33s. Have a nice day! +Fri Feb 19 05:44:09 UTC 2021 +Elapsed time: 08h:19m:22s. Have a nice day! diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index c2a093832a..f9af49440c 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -63,8 +63,6 @@ fi if [ $BUILD = "true" ]; then - sed -i -e '/affinity.c/d' ../../CMakeLists.txt - sudo docker build --build-arg test_name=$TEST_NAME \ --build-arg build_case=$BUILD_CASE \ --no-cache \ diff --git a/tests/compare_ncfile.py b/tests/compare_ncfile.py index 764d5e3288..e5b5ad4f01 100755 --- a/tests/compare_ncfile.py +++ b/tests/compare_ncfile.py @@ -4,12 +4,20 @@ from netCDF4 import Dataset with Dataset(sys.argv[1]) as nc1, Dataset(sys.argv[2]) as nc2: + # Check if the list of variables are the same if nc1.variables.keys()!=nc2.variables.keys(): print("Variables are different") - sys.exit(1) + sys.exit(2) for varname in nc1.variables.keys(): - diff = nc2[varname][:]-nc1[varname][:] - if (np.abs(diff)).max() != 0: - print(varname,"is different") - sys.exit(1) + # First check if each variable has the same dimension + if np.shape(nc1[varname][:])!=np.shape(nc2[varname][:]): + print(varname,"dimension is different") + sys.exit(2) + # If dimension is the same, compare data + else: + diff = nc2[varname][:]-nc1[varname][:] + + if (np.abs(diff)).max() != 0: + print(varname,"is different") + sys.exit(2) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 88e1b1724c..3820f68695 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -343,6 +343,8 @@ export NA_INIT=1 # Radiation export DO_RRTMGP=.F. export ICLOUD=0 +export IAER=111 +export ICLIQ_SW=1 export IOVR=1 # Microphysics diff --git a/tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN b/tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN new file mode 100644 index 0000000000..2c58446c6a --- /dev/null +++ b/tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN @@ -0,0 +1,22 @@ +rm -rf INPUT RESTART +mkdir INPUT RESTART +if [ $WARM_START = .F. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/INPUT/* ./INPUT +else + cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/INPUT/* ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/RESTART/* ./INPUT +fi +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/global_o3prdlos.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/global_h2oprdlos.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/*_table ./ +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/nems.configure ./ +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/ugwp_c384_tau.nc ./ugwp_limb_tau.nc + +if [ $DO_RRTMGP = .T. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi diff --git a/tests/fv3_conf/ccpp_gsd_run.IN b/tests/fv3_conf/ccpp_gsd_run.IN index f76b4843bb..ac566483e4 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/ccpp_gsd_run.IN @@ -39,8 +39,7 @@ if [ $IMP_PHYSICS = 8 ]; then fi else if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" - exit 1 + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero_tke field_table else cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero field_table fi diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index 17f5982063..0ac2931d75 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -134,7 +134,9 @@ fhlwr = 3600. ialb = 1 iems = 1 - iaer = 111 + iaer = @[IAER] + icliq_sw = @[ICLIQ_SW] + iovr = @[IOVR] ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -147,7 +149,8 @@ redrag = .true. dspheat = .true. hybedmf = @[HYBEDMF] - satmedmf = .false. + satmedmf = @[SATMEDMF] + isatmedmf = 1 lheatstrg = @[LHEATSTRG] do_mynnedmf = @[DO_MYNNEDMF] do_mynnsfclay = @[DO_MYNNSFCLAY] @@ -194,7 +197,10 @@ bl_mynn_tkeadvect = .true. bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 - gwd_opt = @[GWD_OPT] + gwd_opt = @[GWD_OPT] + ldiag_ugwp = @[LDIAG_UGWP] + do_ugwp = @[DO_UGWP] + do_tofd = @[DO_TOFD] do_ugwp_v0 = @[DO_UGWP_V0] do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] @@ -300,27 +306,28 @@ FSICS = 99999, / &nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, SKEBNORM=1, SKEB_NPASS=30, SKEB_VDOF=5, SKEB=@[SKEB], SKEB_TAU=2.16E4, SKEB_LSCALE=1000.E3, + SKEBINT=1800, SHUM=@[SHUM], SHUM_TAU=21600, SHUM_LSCALE=500000, + SHUMINT=3600, SPPT=@[SPPT], SPPT_TAU=21600, SPPT_LSCALE=500000, SPPT_LOGIT=.TRUE., SPPT_SFCLIMIT=.TRUE., + SPPTINT=1800, ISEED_SHUM=1, ISEED_SKEB=2, ISEED_SPPT=3, / + &nam_sfcperts lndp_type = @[LNDP_TYPE] LNDP_TAU=21600, @@ -344,3 +351,4 @@ knob_ugwp_version = 0 launch_level = 25 / + diff --git a/tests/parm/ccpp_v16_c96_ugwpv1.nml.IN b/tests/parm/ccpp_v16_c96_ugwpv1.nml.IN new file mode 100644 index 0000000000..4fbff3e65a --- /dev/null +++ b/tests/parm/ccpp_v16_c96_ugwpv1.nml.IN @@ -0,0 +1,343 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 3 + fhmax = 24 + ccpp_suite = 'FV3_GFS_v16b_ugwpv1' +/ + +&diag_manager_nml + prepend_date = .false. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&mpp_io_nml +shuffle=1 +deflate_level=1 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. +/ + +&fv_core_nml + layout = 3,8 + io_layout = 1,1 + npx = 97 + npy = 97 + ntiles = 6 + npz = 127 + grid_type = -1 + make_nh = .false. + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + nudge_qv = .true. + nudge_dz = .false. + n_sponge = 42 + fv_sg_adj = 450 + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + d_con = 1. + ke_bg = 0. + do_vort_damp = .true. + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = 0 + d_ext = 0. + dnats = 1 + warm_start = @[WARM_START] + external_ic = @[EXTERNAL_IC] + external_eta = .true. + gfs_phil = .false. + nggps_ic = .true. + mountain = @[MOUNTAIN] + ncep_ic = .false. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + dry_mass=98320.0 + consv_te = 1. + do_sat_adj = .true. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" + +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 128 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 6 + h2o_phys = .true. + ldiag3d = .false. + fhcyc = 24 + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 11 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 5111 + icliq_sw = 2 + iovr = 3 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 + lheatstrg = .false. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 0.14,1.8,1.0,1.0 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 1 + iopt_dveg = 1 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + oz_phys = .F. + oz_phys_2015 = .T. + debug = .false. + nstf_name = 2,0,0,0,0 + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .true. + effr_in = .true. + cplwav = .false. + do_sppt = .false. + do_shum = .false. + do_skeb = .false. + ltaerosol = .false. + lradar = .false. + ttendlim = 0.005 + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf_mom = 1 + min_lakeice = 0.15 + min_seaice = 0.15 + ldiag_ugwp = .false. + do_ugwp = .false. + do_tofd = .false. + gwd_opt = 1 + do_ugwp_v1 = .T. + do_ugwp_v1_w_gsldrag = .T. + do_ugwp_v1_orog_only = .F. + do_gsl_drag_ls_bl = .F. + do_gsl_drag_ss = .F. + do_gsl_drag_tofd = .F. + do_ugwp_v0 = .F. + do_ugwp_v0_orog_only = .F. +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' + FNALBC2 = 'global_albedo4.1x1.grb' + FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + FNTG3C = 'global_tg3clim.2.6x1.5.grb' + FNVEGC = 'global_vegfrac.0.144.decpercent.grb' + FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' + FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' + FNSMCC = 'global_soilmgldas.t126.384.190.grb' + FNMSKH = 'seaice_newland.grb' + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = 'global_shdmin.0.144x0.144.grb' + FNVMXC = 'global_shdmax.0.144x0.144.grb' + FNSLPC = 'global_slope.1x1.grb' + FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' + LDEBUG = .false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .true. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 99999 + FSICS = 99999 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&nam_stochy +/ + +&nam_sfcperts +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_version = 1 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 2 + knob_ugwp_ndx4lh = 4 + knob_ugwp_palaunch = 275.0e2 + knob_ugwp_nslope = 0 + knob_ugwp_lzmax = 15.750e3 + knob_ugwp_lzmin = 0.75e3 + knob_ugwp_lzstar = 2.0e3 + knob_ugwp_taumin = 0.25e-3 + knob_ugwp_tauamp = 3.0e-3 + knob_ugwp_lhmet = 200.0e3 + knob_ugwp_orosolv = 'pss-1986' +/ diff --git a/tests/rt.conf b/tests/rt.conf index 5c240af485..2dd89c69e9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -5,7 +5,7 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_ccpp_control | | fv3 | -RUN | fv3_ccpp_decomp | | | +RUN | fv3_ccpp_decomp | - jet.intel | | RUN | fv3_ccpp_2threads | | | RUN | fv3_ccpp_restart | | | fv3_ccpp_control RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control @@ -47,10 +47,6 @@ RUN | fv3_ccpp_regional_quilt_netcdf_parallel #RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | #RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_control_debug | | fv3 | -RUN | fv3_ccpp_stretched_nest_debug | | fv3 | - COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | RUN | fv3_ccpp_gfdlmp | | fv3 | RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | @@ -63,7 +59,7 @@ RUN | fv3_ccpp_csawmg RUN | fv3_ccpp_satmedmf | | fv3 | RUN | fv3_ccpp_satmedmfq | | fv3 | -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | RUN | fv3_ccpp_cpt | | fv3 | @@ -95,10 +91,12 @@ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flak RUN | fv3_ccpp_gocart_clm | | fv3 | RUN | fv3_ccpp_gfs_v16_flake | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | fv3 | RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | ################################################################################################################################################################################### # DEBUG tests # @@ -107,23 +105,27 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) # Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | RUN | fv3_ccpp_gfs_v16_debug | | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_regional_control_debug | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | | fv3 | RUN | fv3_ccpp_gsd_debug | | fv3 | RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | RUN | fv3_ccpp_thompson_debug | | fv3 | RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 | RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | #RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | ################################################################################################################################################################################### # CPLD tests # diff --git a/tests/rt.sh b/tests/rt.sh index 92e1b8928c..d2a16ac9c0 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -34,8 +34,15 @@ rt_single() { [[ ${#line} == 0 ]] && continue [[ $line == \#* ]] && continue - if [[ $line =~ COMPILE && $line =~ ${MACHINE_ID} ]]; then - compile_line=$line + if [[ $line == COMPILE* ]] ; then + MACHINES=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + if [[ ${MACHINES} == '' ]]; then + compile_line=$line + elif [[ ${MACHINES} == -* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line + elif [[ ${MACHINES} == +* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line + fi fi if [[ $line =~ RUN ]]; then @@ -200,11 +207,9 @@ elif [[ $MACHINE_ID = wcoss2 ]]; then elif [[ $MACHINE_ID = gaea.* ]]; then - module load cray-python/3.7.3.2 - - export PATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin:$PATH - export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/lib/python3.7/site-packages - ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin/ecflow_start.sh + export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) DISKNM=/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT @@ -282,9 +287,9 @@ elif [[ $MACHINE_ID = jet.* ]]; then ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.5.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.5.3/lib/python3.6/site-packages - ECFLOW_START=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.5.3/bin/ecflow_start.sh + export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=batch @@ -302,10 +307,9 @@ elif [[ $MACHINE_ID = jet.* ]]; then elif [[ $MACHINE_ID = cheyenne.* ]]; then - module load python/3.7.9 - export PATH=/glade/p/ral/jntp/tools/ecFlow-5.5.3/bin:$PATH - export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.5.3/lib/python3.7/site-packages - ECFLOW_START=/glade/p/ral/jntp/tools/ecFlow-5.5.3/bin/ecflow_start.sh + export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=regular @@ -411,12 +415,12 @@ if [[ $TESTS_FILE =~ '35d' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210128/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210217/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210128} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210217} fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210115} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220 shift $((OPTIND-1)) @@ -771,6 +775,7 @@ else [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT} [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} *_lock.db [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* + [[ ${SINGLE_NAME} != '' ]] && rm -f rt.conf.single fi date >> ${REGRESSIONTEST_LOG} diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index a690e1c8db..562022cb6f 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -20,7 +20,7 @@ COMPILE | REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc RUN | fv3_ccpp_gsd_mynnsfc | | fv3 | RUN | fv3_ccpp_gsd_noah_mynnsfc | | fv3 | -COMPILE | REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | fv3 | +COMPILE | REPRO=Y SUITES=FV3_GFS_v16_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | fv3 | RUN | fv3_ccpp_thompson | | fv3 | RUN | fv3_ccpp_thompson_no_aero | | fv3 | @@ -46,7 +46,7 @@ RUN | fv3_ccpp_ntiedtke # CCPP DEBUG tests # ############################################################################################################################################################ -COMPILE | DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v15_thompson | | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v16_thompson | | fv3 | RUN | fv3_ccpp_gsd_debug | | fv3 | RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 09c68b73ba..e6821e3cb6 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -15,17 +15,19 @@ RUN | fv3_ccpp_gfs_v16_flake RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | RUN | fv3_ccpp_gsd | | fv3 | RUN | fv3_ccpp_thompson | | fv3 | RUN | fv3_ccpp_thompson_no_aero | | fv3 | RUN | fv3_ccpp_rrfs_v1beta | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | fv3 | RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | ################################################################################################################################################################## # CCPP DEBUG tests # @@ -44,17 +46,18 @@ RUN | fv3_ccpp_gfs_v16_RRTMGP_debug COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | RUN | fv3_ccpp_multigases | | fv3 | -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | -# FIX ME - THESE ARE ALL CRASHING ON HERA WITH GNU 9.2.0 / CHEYENNE WITH GNU 9.1.0 -#RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | -#RUN | fv3_ccpp_gsd_debug | | fv3 | -#RUN | fv3_ccpp_thompson_debug | | fv3 | -#RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_regional_control_debug | | fv3 | +RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | +RUN | fv3_ccpp_gsd_debug | | fv3 | +RUN | fv3_ccpp_thompson_debug | | fv3 | +RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 | RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | #RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | ################################################################################################################################################################## # S2S tests # diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index c58d775039..52f9dd8f6a 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -270,13 +270,23 @@ check_results() { else - d=$( cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i | wc -l ) + cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? + if [[ $d -eq 2 ]]; then + echo "....CMP ERROR" >> ${REGRESSIONTEST_LOG} + echo "....CMP ERROR" + exit 1 + fi - if [[ $d -ne 0 ]] ; then + if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet ]]; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." - d=$( ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i 2>/dev/null | wc -l ) + ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? + if [[ $d -eq 1 ]]; then + echo "....ERROR" >> ${REGRESSIONTEST_LOG} + echo "....ERROR" + exit 1 + fi fi fi diff --git a/tests/tests/fv3_ccpp_gfsv16_ugwpv1 b/tests/tests/fv3_ccpp_gfsv16_ugwpv1 new file mode 100644 index 0000000000..daec8b1c96 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfsv16_ugwpv1 @@ -0,0 +1,88 @@ +############################################################################### +# +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag: fv3_ccpp_gfsv16_ugwpv1 +# +############################################################################### + +export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version" + +export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1 + +export LIST_FILES="phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 + +export SYEAR=2019 +export SMONTH=07 +export SDAY=01 +export SHOUR=00 + +DT_ATMOS="600" + +export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export WLCLK=30 + +# Cold start, these are defaults +#export WARM_START=.F. +#export EXTERNAL_IC=.T. +#export MOUNTAIN=.F. + diff --git a/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug new file mode 100644 index 0000000000..718f438483 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug @@ -0,0 +1,88 @@ +########################################################################################### +# +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag in DEBUG mode: fv3_ccpp_gfsv16_ugwpv1_debug +# +########################################################################################### + +export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 DEBUG with previous trunk version" + +export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_debug + +export LIST_FILES="phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf006.tile1.nc \ + phyf006.tile2.nc \ + phyf006.tile3.nc \ + phyf006.tile4.nc \ + phyf006.tile5.nc \ + phyf006.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf006.tile1.nc \ + dynf006.tile2.nc \ + dynf006.tile3.nc \ + dynf006.tile4.nc \ + dynf006.tile5.nc \ + dynf006.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + +export_fv3 + +export SYEAR=2019 +export SMONTH=07 +export SDAY=01 +export SHOUR=00 + +DT_ATMOS="600" +export FHMAX=6 + +export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export WLCLK=30 + +# Cold start, these are defaults +#export WARM_START=.F. +#export EXTERNAL_IC=.T. +#export MOUNTAIN=.F. + diff --git a/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart new file mode 100644 index 0000000000..049302c5da --- /dev/null +++ b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart @@ -0,0 +1,88 @@ +############################################################################### +# +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag, warm start: fv3_ccpp_gfsv16_ugwpv1_warmstart +# +############################################################################### + +export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version" + +export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_warmstart + +export LIST_FILES="phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 + +export SYEAR=2019 +export SMONTH=07 +export SDAY=02 +export SHOUR=00 + +DT_ATMOS="600" + +export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export WLCLK=30 + +# Warm start +export WARM_START=.T. +export EXTERNAL_IC=.F. +export MOUNTAIN=.T. + diff --git a/tests/tests/fv3_ccpp_regional_control_debug b/tests/tests/fv3_ccpp_regional_control_debug new file mode 100644 index 0000000000..736ad8ada6 --- /dev/null +++ b/tests/tests/fv3_ccpp_regional_control_debug @@ -0,0 +1,35 @@ +############################################################################### +# +# FV3 CCPP regional control test +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP regional control results with previous trunk version" + +export CNTL_DIR=fv3_regional_control_debug + +export LIST_FILES=" atmos_4xdaily.nc \ + fv3_history2d.nc \ + fv3_history.nc \ + RESTART/fv_core.res.tile1_new.nc \ + RESTART/fv_tracer.res.tile1_new.nc" + +export_fv3 + +export TASKS=40 +export FHMAX="01" + +export FV3_RUN=ccpp_regional_run.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. +export HYBEDMF=.F. + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export INPUT_NML=ccpp_regional.nml.IN + +export FDIAG=1 +export INPES=5 +export JNPES=8 +export WRITE_RESTART_WITH_BCS=.true. diff --git a/tests/tests/fv3_ccpp_thompson b/tests/tests/fv3_ccpp_thompson index 6c3de6871b..67ecbe9321 100644 --- a/tests/tests/fv3_ccpp_thompson +++ b/tests/tests/fv3_ccpp_thompson @@ -81,11 +81,19 @@ export LRADAR=.T. export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/tests/fv3_ccpp_thompson_debug b/tests/tests/fv3_ccpp_thompson_debug index 52e5b7d350..d7586cb1ea 100644 --- a/tests/tests/fv3_ccpp_thompson_debug +++ b/tests/tests/fv3_ccpp_thompson_debug @@ -84,11 +84,19 @@ export LRADAR=.T. export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/tests/fv3_ccpp_thompson_no_aero b/tests/tests/fv3_ccpp_thompson_no_aero index 85b3ec6e65..41b6e4696a 100644 --- a/tests/tests/fv3_ccpp_thompson_no_aero +++ b/tests/tests/fv3_ccpp_thompson_no_aero @@ -82,11 +82,19 @@ export NSRADAR_RESET=3600.0 export LTAEROSOL=.F. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/tests/fv3_ccpp_thompson_no_aero_debug b/tests/tests/fv3_ccpp_thompson_no_aero_debug index f88b24fb05..c21269307b 100644 --- a/tests/tests/fv3_ccpp_thompson_no_aero_debug +++ b/tests/tests/fv3_ccpp_thompson_no_aero_debug @@ -85,11 +85,19 @@ export NSRADAR_RESET=3600.0 export LTAEROSOL=.F. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/utest.bld b/tests/utest.bld index 755c599e48..90814bc59e 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -1,22 +1,22 @@ -fv3_ccpp_control | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_netcdf_esmf | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_netcdf | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGlatlon_netcdf | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_nemsio | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_stochy | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_iau | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_ca | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_lheatstrg | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_gfdlmprad | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_ccpp_atmwav | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_ccpp_multigases | CCPP=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -fv3_ccpp_gfdlmp | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp -fv3_ccpp_gfdlmprad_gwd | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp -fv3_ccpp_gfdlmprad_noahmp | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_noahmp -fv3_ccpp_csawmg | CCPP=Y SUITES=FV3_GFS_2017_csawmg -fv3_ccpp_satmedmf | CCPP=Y SUITES=FV3_GFS_2017_satmedmf -fv3_ccpp_satmedmfq | CCPP=Y SUITES=FV3_GFS_2017_satmedmfq -fv3_ccpp_gfsv16_csawmg | CCPP=Y SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gfsv16_csawmgt | CCPP=Y SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gocart_clm | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -fv3_ccpp_gfs_v16_flake | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_ccpp_control | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_netcdf_esmf | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_netcdf | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGlatlon_netcdf | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_nemsio | SUITES=FV3_GFS_2017 +fv3_ccpp_stochy | SUITES=FV3_GFS_2017 +fv3_ccpp_iau | SUITES=FV3_GFS_2017 +fv3_ccpp_ca | SUITES=FV3_GFS_2017 +fv3_ccpp_lheatstrg | SUITES=FV3_GFS_2017 +fv3_ccpp_gfdlmprad | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y +fv3_ccpp_atmwav | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y +fv3_ccpp_multigases | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +fv3_ccpp_gfdlmp | SUITES=FV3_GFS_2017_gfdlmp +fv3_ccpp_gfdlmprad_gwd | SUITES=FV3_GFS_2017_gfdlmp +fv3_ccpp_gfdlmprad_noahmp | SUITES=FV3_GFS_2017_gfdlmp_noahmp +fv3_ccpp_csawmg | SUITES=FV3_GFS_2017_csawmg +fv3_ccpp_satmedmf | SUITES=FV3_GFS_2017_satmedmf +fv3_ccpp_satmedmfq | SUITES=FV3_GFS_2017_satmedmfq +fv3_ccpp_gfsv16_csawmg | SUITES=FV3_GFS_v16_csawmg +fv3_ccpp_gfsv16_csawmgt | SUITES=FV3_GFS_v16_csawmg +fv3_ccpp_gocart_clm | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_ccpp_gfs_v16_flake | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake From 0efc765b5d5a9bcaa6f978791a83d3ef1d8ebdeb Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 22 Feb 2021 18:26:44 +0000 Subject: [PATCH 089/117] * Fixes to get crontab run to work * temp edit of rt.conf for testing cron --- tests/auto/rt_auto.py | 4 +- tests/auto/rt_auto.sh | 10 ++- tests/rt.conf | 185 ------------------------------------------ 3 files changed, 10 insertions(+), 189 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index f8ccdd7c31..934753b98d 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -76,7 +76,7 @@ def input_data(args): }] action_list_dict = [{ 'name': 'RT', - 'command': './rt.sh -e', + 'command': 'cd tests && ./rt.sh -e', 'callback_fnc': 'move_rt_logs' }] @@ -187,7 +187,7 @@ def runFunction(self): logger = logging.getLogger('JOB/RUNFUNCTION') try: logger.info(f'Running: "{self.preq_dict["action"]["command"]}" in "{self.pr_repo_loc}"') - output = subprocess.Popen(self.preq_dict['action']['command'], cwd=self.pr_repo_loc+"/tests", shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + output = subprocess.Popen(self.preq_dict['action']['command'], cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out,err = output.communicate() except Exception as e: self.add_pr_label() diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index e827ce20dc..99902d1753 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -6,26 +6,32 @@ source ../detect_machine.sh echo "Machine ID: "+$MACHINE_ID if [[ $MACHINE_ID = hera.* ]]; then WORKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test + export MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles" export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $MACHINE_ID = orion.* ]]; then WORKDIR=/work/noaa/nems/bcurtis/test + export MODULEPATH="/apps/modulefiles/core" export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $MACHINE_ID = jet.* ]]; then WORKDIR=/lfs4/HFIP/h-nems/Brian.Curtis/test + export MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles" export ACCNR="h-nems" export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin:$PATH export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages elif [[ $MACHINE_ID = gaea.* ]]; then WORKDIR=/lustre/f2/pdata/ncep/Brian.Curtis/test + export MODULEPATH="/usw/eslogin/modulefiles-c4:/sw/gaea-cle7/modulefiles/linux-sles15-x86_64:/opt/cray/pe/perftools/7.1.3/modulefiles:/opt/cray/ari/modulefiles:/opt/cray/pe/craype/2.6.3/modulefiles:/opt/cray/pe/modulefiles:/opt/cray/modulefiles:/opt/modulefiles:/sw/common/modulefiles" export LOADEDMODULES=$LOADEDMODULES export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages elif [[ $MACHINE_ID = cheyenne.* ]]; then - export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH - export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages + #export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH + #export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages + echo "cheyenne not currently supported. automated RT not starting" + exit 1 else echo "No Python Path for this machine. automated RT not starting" exit 1 diff --git a/tests/rt.conf b/tests/rt.conf index 2dd89c69e9..f9d44dbc8e 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -5,188 +5,3 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_ccpp_control | | fv3 | -RUN | fv3_ccpp_decomp | - jet.intel | | -RUN | fv3_ccpp_2threads | | | -RUN | fv3_ccpp_restart | | | fv3_ccpp_control -RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | -RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | -RUN | fv3_ccpp_stochy | | fv3 | -RUN | fv3_ccpp_ca | | fv3 | -RUN | fv3_ccpp_lndp | | fv3 | -# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it -RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_lheatstrg | | fv3 | - -# WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | -RUN | fv3_ccpp_multigases | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | -RUN | fv3_ccpp_control_32bit | | fv3 | -RUN | fv3_ccpp_stretched | | fv3 | -RUN | fv3_ccpp_stretched_nest | | fv3 | - -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | -RUN | fv3_ccpp_regional_control | | fv3 | -RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control -RUN | fv3_ccpp_regional_quilt | | fv3 | -RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | -#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | -#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | -#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | -RUN | fv3_ccpp_gfdlmp | | fv3 | -RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | -RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | -#RUN | fv3_ccpp_csawmgshoc | | fv3 | -#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | -RUN | fv3_ccpp_csawmg | | fv3 | -RUN | fv3_ccpp_satmedmf | | fv3 | -RUN | fv3_ccpp_satmedmfq | | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | -RUN | fv3_ccpp_cpt | | fv3 | -RUN | fv3_ccpp_gsd | | fv3 | -# These two tests crash with NaNs on jet.intel -RUN | fv3_ccpp_rap | - jet.intel | fv3 | -RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | -RUN | fv3_ccpp_thompson | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | | fv3 | -# This test crashes with NaNs on jet.intel -RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | -# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 -RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16 | | fv3 | -RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 -RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | - -COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | -# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests -RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | -RUN | fv3_ccpp_gocart_clm | | fv3 | -RUN | fv3_ccpp_gfs_v16_flake | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | -RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | -RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | - -################################################################################################################################################################################### -# DEBUG tests # -################################################################################################################################################################################### - -# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 -COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_debug | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | - -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_regional_control_debug | | fv3 | -RUN | fv3_ccpp_control_debug | | fv3 | -RUN | fv3_ccpp_stretched_nest_debug | | fv3 | -RUN | fv3_ccpp_gsd_debug | | fv3 | -RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | -RUN | fv3_ccpp_thompson_debug | | fv3 | -RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | - -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 | -RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | -#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | -RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | -RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | - -################################################################################################################################################################################### -# CPLD tests # -################################################################################################################################################################################### - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | -RUN | cpld_control | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control -RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac - -RUN | cpld_2threads | - wcoss_cray jet.intel | | -RUN | cpld_decomp | - wcoss_cray jet.intel | | -RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | -RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | - -#12h/36h/48h restart tests -RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 -RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 - -RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 -RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 - -RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark -RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac - -#6h/6h/12h restart test -# test fails on gaea with esmfpio error -RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | - -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | -RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | -RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | - -################################################################################################################################################################################### -# Data Atmosphere tests # -################################################################################################################################################################################### - -COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | -RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | -RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr -RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | - -RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | -RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | - -RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | -RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | - -COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | -RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | From fd5d0df3c7d45fc5bc6e7778c158ef486b245dd7 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 22 Feb 2021 18:33:01 +0000 Subject: [PATCH 090/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 5584 +------------------------- 1 file changed, 1 insertion(+), 5583 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5cdfec543e..3bacfc12af 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,5585 +1,3 @@ -Thu Feb 18 02:57:16 UTC 2021 +Mon Feb 22 18:31:21 UTC 2021 Start Regression test - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_csawmg_prod -Checking test 031 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmfq_prod -Checking test 033 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_satmedmfq PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rap_prod -Checking test 038 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_rap PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_hrrr_prod -Checking test 039 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_hrrr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_prod -Checking test 040 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_prod -Checking test 041 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_prod -Checking test 042 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_prod -Checking test 043 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_prod -Checking test 044 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_restart_prod -Checking test 045 fv3_ccpp_gfs_v16_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_stochy_prod -Checking test 046 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_csawmg_prod -Checking test 050 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gocart_clm_prod -Checking test 052 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gocart_clm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_flake_prod -Checking test 053 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_debug_prod -Checking test 062 fv3_ccpp_regional_control_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 062 fv3_ccpp_regional_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_debug_prod -Checking test 063 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 063 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_nest_debug_prod -Checking test 064 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 064 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_debug_prod -Checking test 065 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_gsd_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_debug_prod -Checking test 067 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 067 fv3_ccpp_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 068 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 069 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_prod -Checking test 073 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_prod -Checking test 074 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_prod -Checking test 075 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_controlfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_prod -Checking test 076 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_restartfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_2threads_prod -Checking test 077 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 077 cpld_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_decomp_prod -Checking test 078 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 078 cpld_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_satmedmf_prod -Checking test 079 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 079 cpld_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_ca_prod -Checking test 080 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 080 cpld_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c192_prod -Checking test 081 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 081 cpld_control_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c192_prod -Checking test 082 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 082 cpld_restart_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c192_prod -Checking test 083 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 083 cpld_controlfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c192_prod -Checking test 084 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 084 cpld_restartfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c384_prod -Checking test 085 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 085 cpld_control_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c384_prod -Checking test 086 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 086 cpld_restart_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c384_prod -Checking test 087 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 087 cpld_controlfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c384_prod -Checking test 088 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 088 cpld_restartfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_prod -Checking test 089 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 089 cpld_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmark_prod -Checking test 090 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 090 cpld_restart_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_prod -Checking test 091 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_prod -Checking test 092 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_restart_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_v16_prod -Checking test 093 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_v16_prod -Checking test 094 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 094 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_wave_prod -Checking test 095 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 095 cpld_bmark_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_prod -Checking test 096 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 096 cpld_bmarkfrac_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_v16_prod -Checking test 097 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 097 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_wave_prod -Checking test 098 cpld_control_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - Comparing 20161004.000000.out_grd.glo_1deg .........OK - Comparing 20161004.000000.out_pnt.points .........OK - Comparing 20161004.000000.restart.glo_1deg .........OK -Test 098 cpld_control_wave PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debug_prod -Checking test 099 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 099 cpld_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debugfrac_prod -Checking test 100 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 100 cpld_debugfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_cfsr -Checking test 101 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_control_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_restart_cfsr -Checking test 102 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_restart_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_gefs -Checking test 103 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_control_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_cfsr -Checking test 104 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 104 datm_bulk_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_gefs -Checking test 105 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 105 datm_bulk_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_cfsr -Checking test 106 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 106 datm_mx025_cfsr PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_gefs -Checking test 107 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 107 datm_mx025_gefs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_debug_cfsr -Checking test 108 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 108 datm_debug_cfsr PASS - - -REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 04:38:47 UTC 2021 -Elapsed time: 01h:41m:32s. Have a nice day! From 9c24b805925f5ebf25a87912d9d5026bbea999c1 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 22 Feb 2021 19:42:03 +0000 Subject: [PATCH 091/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 74 +++++++++++++++++++++++++++- 1 file changed, 73 insertions(+), 1 deletion(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 3bacfc12af..5886e2606a 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,3 +1,75 @@ -Mon Feb 22 18:31:21 UTC 2021 +Mon Feb 22 19:27:08 UTC 2021 Start Regression test + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_96111/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 001 fv3_ccpp_control PASS + + +REGRESSION TEST WAS SUCCESSFUL +Mon Feb 22 19:42:02 UTC 2021 +Elapsed time: 00h:14m:54s. Have a nice day! From 08c4aff5471f76c36407ec94acf391ada81d1363 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 22 Feb 2021 19:46:49 +0000 Subject: [PATCH 092/117] Run rt_auto.py and rt.sh in a login shell --- tests/auto/rt_auto.py | 2 +- tests/auto/rt_auto.sh | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 934753b98d..daf7424c32 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -76,7 +76,7 @@ def input_data(args): }] action_list_dict = [{ 'name': 'RT', - 'command': 'cd tests && ./rt.sh -e', + 'command': 'cd tests && /bin/bash --login ./rt.sh -e', 'callback_fnc': 'move_rt_logs' }] diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 99902d1753..dfa4d4e1c6 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/bash --login set -eux export RT_COMPILER='intel' @@ -6,23 +6,19 @@ source ../detect_machine.sh echo "Machine ID: "+$MACHINE_ID if [[ $MACHINE_ID = hera.* ]]; then WORKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test - export MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles" export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $MACHINE_ID = orion.* ]]; then WORKDIR=/work/noaa/nems/bcurtis/test - export MODULEPATH="/apps/modulefiles/core" export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $MACHINE_ID = jet.* ]]; then WORKDIR=/lfs4/HFIP/h-nems/Brian.Curtis/test - export MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles" export ACCNR="h-nems" export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin:$PATH export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages elif [[ $MACHINE_ID = gaea.* ]]; then WORKDIR=/lustre/f2/pdata/ncep/Brian.Curtis/test - export MODULEPATH="/usw/eslogin/modulefiles-c4:/sw/gaea-cle7/modulefiles/linux-sles15-x86_64:/opt/cray/pe/perftools/7.1.3/modulefiles:/opt/cray/ari/modulefiles:/opt/cray/pe/craype/2.6.3/modulefiles:/opt/cray/pe/modulefiles:/opt/cray/modulefiles:/opt/modulefiles:/sw/common/modulefiles" export LOADEDMODULES=$LOADEDMODULES export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH From 6d2c0320991e58ee2eabaed2af28394e3a0df01e Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 22 Feb 2021 14:33:01 -0600 Subject: [PATCH 093/117] Auto: Added Updated RT Log file: tests/RegressionTests_orion.intel.log --- tests/RegressionTests_orion.intel.log | 5518 +------------------------ 1 file changed, 4 insertions(+), 5514 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b150da682d..5824cb43f3 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Feb 18 10:57:36 CST 2021 +Mon Feb 22 13:57:01 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_317245/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,5516 +70,6 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 017 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_multigases PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_ccpp_control_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_ccpp_stretched PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 023 fv3_ccpp_stretched_nest PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 024 fv3_ccpp_regional_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 025 fv3_ccpp_regional_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_csawmg_prod -Checking test 031 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmfq_prod -Checking test 033 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_satmedmfq PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_cpt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_gsd PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rap_prod -Checking test 038 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_rap PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_hrrr_prod -Checking test 039 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_hrrr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_prod -Checking test 040 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_prod -Checking test 041 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_prod -Checking test 042 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_prod -Checking test 043 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_prod -Checking test 044 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_restart_prod -Checking test 045 fv3_ccpp_gfs_v16_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_stochy_prod -Checking test 046 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_csawmg_prod -Checking test 050 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gocart_clm_prod -Checking test 052 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gocart_clm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_flake_prod -Checking test 053 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_debug_prod -Checking test 062 fv3_ccpp_regional_control_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 062 fv3_ccpp_regional_control_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_debug_prod -Checking test 063 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 063 fv3_ccpp_control_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_nest_debug_prod -Checking test 064 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 064 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_debug_prod -Checking test 065 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_gsd_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_debug_prod -Checking test 067 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 067 fv3_ccpp_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 068 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 069 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_prod -Checking test 073 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_prod -Checking test 074 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_prod -Checking test 075 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_controlfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_prod -Checking test 076 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_restartfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_2threads_prod -Checking test 077 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 077 cpld_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_decomp_prod -Checking test 078 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 078 cpld_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_satmedmf_prod -Checking test 079 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 079 cpld_satmedmf PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_ca_prod -Checking test 080 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 080 cpld_ca PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c192_prod -Checking test 081 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 081 cpld_control_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c192_prod -Checking test 082 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 082 cpld_restart_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c192_prod -Checking test 083 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 083 cpld_controlfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c192_prod -Checking test 084 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 084 cpld_restartfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c384_prod -Checking test 085 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 085 cpld_control_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c384_prod -Checking test 086 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 086 cpld_restart_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c384_prod -Checking test 087 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 087 cpld_controlfrac_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c384_prod -Checking test 088 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 088 cpld_restartfrac_c384 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_prod -Checking test 089 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 089 cpld_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmark_prod -Checking test 090 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 090 cpld_restart_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_prod -Checking test 091 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_prod -Checking test 092 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_restart_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_v16_prod -Checking test 093 cpld_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_v16_prod -Checking test 094 cpld_restart_bmarkfrac_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 094 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_wave_prod -Checking test 095 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 095 cpld_bmark_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_prod -Checking test 096 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 096 cpld_bmarkfrac_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_v16_prod -Checking test 097 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 097 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_wave_prod -Checking test 098 cpld_control_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - Comparing 20161004.000000.out_grd.glo_1deg .........OK - Comparing 20161004.000000.out_pnt.points .........OK - Comparing 20161004.000000.restart.glo_1deg .........OK -Test 098 cpld_control_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debug_prod -Checking test 099 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 099 cpld_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debugfrac_prod -Checking test 100 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 100 cpld_debugfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_cfsr -Checking test 101 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_control_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_restart_cfsr -Checking test 102 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_restart_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_gefs -Checking test 103 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_control_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_cfsr -Checking test 104 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 104 datm_bulk_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_gefs -Checking test 105 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 105 datm_bulk_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_cfsr -Checking test 106 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 106 datm_mx025_cfsr PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_gefs -Checking test 107 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 107 datm_mx025_gefs PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_debug_cfsr -Checking test 108 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 108 datm_debug_cfsr PASS - - REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 21:22:48 CST 2021 -Elapsed time: 10h:25m:12s. Have a nice day! +Mon Feb 22 14:32:58 CST 2021 +Elapsed time: 00h:35m:58s. Have a nice day! From 42bfb7e19f358d03fb17c53aa92ddaaf50bccfd1 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 22 Feb 2021 15:36:33 -0500 Subject: [PATCH 094/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 5026 +------------------------- 1 file changed, 4 insertions(+), 5022 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 368d969a32..4eac847a36 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Feb 17 18:30:56 EST 2021 +Mon Feb 22 15:19:15 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_42675/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,5024 +70,6 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_ccpp_ca PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_lndp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_iau PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 017 fv3_ccpp_multigases PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_control_32bit PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_ccpp_stretched PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 020 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 021 fv3_ccpp_regional_control PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 022 fv3_ccpp_regional_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 023 fv3_ccpp_regional_quilt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 025 fv3_ccpp_gfdlmp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 026 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_ccpp_csawmg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_ccpp_satmedmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_satmedmfq PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_cpt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_gsd PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rap_prod -Checking test 035 fv3_ccpp_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_rap PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_hrrr_prod -Checking test 036 fv3_ccpp_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_hrrr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rrfs_v1beta_prod -Checking test 039 fv3_ccpp_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_prod -Checking test 040 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v15p2 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_prod -Checking test 041 fv3_ccpp_gfs_v16 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_restart_prod -Checking test 042 fv3_ccpp_gfs_v16_restart results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_stochy_prod -Checking test 043 fv3_ccpp_gfs_v16_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16_stochy PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmg_prod -Checking test 047 fv3_ccpp_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gocart_clm_prod -Checking test 049 fv3_ccpp_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gocart_clm PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_flake_prod -Checking test 050 fv3_ccpp_gfs_v16_flake results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16_flake PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfs_v16_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_debug_prod -Checking test 059 fv3_ccpp_regional_control_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 059 fv3_ccpp_regional_control_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_debug_prod -Checking test 060 fv3_ccpp_control_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK -Test 060 fv3_ccpp_control_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_nest_debug_prod -Checking test 061 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 061 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_prod -Checking test 070 cpld_control results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_control PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_prod -Checking test 071 cpld_restart results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_restart PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_prod -Checking test 072 cpld_controlfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_controlfrac PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_prod -Checking test 073 cpld_restartfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_restartfrac PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_2threads_prod -Checking test 074 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_2threads PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_decomp_prod -Checking test 075 cpld_decomp results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_decomp PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_satmedmf_prod -Checking test 076 cpld_satmedmf results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_satmedmf PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_ca_prod -Checking test 077 cpld_ca results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 077 cpld_ca PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c192_prod -Checking test 078 cpld_control_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_control_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c192_prod -Checking test 079 cpld_restart_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_restart_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c192_prod -Checking test 080 cpld_controlfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_controlfrac_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c192_prod -Checking test 081 cpld_restartfrac_c192 results .... - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 081 cpld_restartfrac_c192 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c384_prod -Checking test 082 cpld_control_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_control_c384 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c384_prod -Checking test 083 cpld_restart_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_restart_c384 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c384_prod -Checking test 084 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_controlfrac_c384 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c384_prod -Checking test 085 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 085 cpld_restartfrac_c384 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmark_prod -Checking test 086 cpld_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_bmark PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmark_prod -Checking test 087 cpld_restart_bmark results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_restart_bmark PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmarkfrac_prod -Checking test 088 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_bmarkfrac PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmarkfrac_prod -Checking test 089 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 089 cpld_restart_bmarkfrac PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debug_prod -Checking test 090 cpld_debug results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 090 cpld_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debugfrac_prod -Checking test 091 cpld_debugfrac results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 091 cpld_debugfrac PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_cfsr -Checking test 092 datm_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 092 datm_control_cfsr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_restart_cfsr -Checking test 093 datm_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 093 datm_restart_cfsr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_gefs -Checking test 094 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 094 datm_control_gefs PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_cfsr -Checking test 095 datm_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 095 datm_bulk_cfsr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_gefs -Checking test 096 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_bulk_gefs PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_cfsr -Checking test 097 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_mx025_cfsr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_gefs -Checking test 098 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_mx025_gefs PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_debug_cfsr -Checking test 099 datm_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 099 datm_debug_cfsr PASS - - REGRESSION TEST WAS SUCCESSFUL -Wed Feb 17 20:13:13 EST 2021 -Elapsed time: 01h:42m:18s. Have a nice day! +Mon Feb 22 15:36:32 EST 2021 +Elapsed time: 00h:17m:18s. Have a nice day! From 578aa0af7a70fde250d7b703b09f00cc4b186957 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Mon, 22 Feb 2021 21:44:07 +0000 Subject: [PATCH 095/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5886e2606a..80d683feb2 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Mon Feb 22 19:27:08 UTC 2021 +Mon Feb 22 21:28:17 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_96111/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_118336/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,5 +71,5 @@ Test 001 fv3_ccpp_control PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 22 19:42:02 UTC 2021 -Elapsed time: 00h:14m:54s. Have a nice day! +Mon Feb 22 21:44:06 UTC 2021 +Elapsed time: 00h:15m:49s. Have a nice day! From 588fe3d4fdb9bce20aabbfd96e359777cd8dcb82 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 23 Feb 2021 01:57:38 +0000 Subject: [PATCH 096/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 80d683feb2..01db90ebf7 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Mon Feb 22 21:28:17 UTC 2021 +Tue Feb 23 01:43:50 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_118336/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_51012/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,5 +71,5 @@ Test 001 fv3_ccpp_control PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 22 21:44:06 UTC 2021 -Elapsed time: 00h:15m:49s. Have a nice day! +Tue Feb 23 01:57:37 UTC 2021 +Elapsed time: 00h:13m:47s. Have a nice day! From d93c8db9b2b836c2251eeddabffe494ad4473bd4 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 23 Feb 2021 02:17:11 +0000 Subject: [PATCH 097/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 01db90ebf7..728c6cf79c 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Feb 23 01:43:50 UTC 2021 +Tue Feb 23 02:03:24 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_51012/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,5 +71,5 @@ Test 001 fv3_ccpp_control PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 23 01:57:37 UTC 2021 -Elapsed time: 00h:13m:47s. Have a nice day! +Tue Feb 23 02:17:10 UTC 2021 +Elapsed time: 00h:13m:46s. Have a nice day! From 1b4df6aa50929a3c6eea36410d934222c86de7a1 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 23 Feb 2021 02:17:24 +0000 Subject: [PATCH 098/117] Auto: adding rt_auto.log --- tests/auto/rt_auto_20210223020202.log | 81 +++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 tests/auto/rt_auto_20210223020202.log diff --git a/tests/auto/rt_auto_20210223020202.log b/tests/auto/rt_auto_20210223020202.log new file mode 100644 index 0000000000..78b87b437b --- /dev/null +++ b/tests/auto/rt_auto_20210223020202.log @@ -0,0 +1,81 @@ +INFO:MAIN:Starting Script +INFO:MAIN:Parsing input args +INFO:MAIN:Calling input_data(). +INFO:MAIN:Setting up GitHub interface. +INFO:MAIN:Getting all pull requests, labels and actions applicable to this machine. +DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.github.com:443 +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model HTTP/1.1" 200 None +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:03 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"8fa58addc1610e2c596885e1efaca54dacd55033b174ce4307a25643f8ffdc85"', 'last-modified': 'Fri, 19 Feb 2021 19:49:26 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4983', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '17', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:79640E:11D27D0:6034621A'} {"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop","permissions":{"admin":false,"push":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":false,"allow_rebase_merge":false,"delete_branch_on_merge":false,"organization":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"network_count":118,"subscribers_count":43} +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/pulls?state=open&sort=created&base=develop HTTP/1.1" 200 None +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/pulls?state=open&sort=created&base=develop {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:05 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"ef2039903f966af88c768adb2cfb257e9e73e26507d4af531b78cb6f7790c687"', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': '', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4982', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '18', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:79641D:11D2813:6034621B'} [{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364","id":553739779,"node_id":"MDExOlB1bGxSZXF1ZXN0NTUzNzM5Nzc5","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/364","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/364.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/364.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/364","number":364,"state":"open","locked":false,"title":"Regional inlinepost","user":{"login":"junwang-noaa","id":37633869,"node_id":"MDQ6VXNlcjM3NjMzODY5","avatar_url":"https://avatars.githubusercontent.com/u/37633869?v=4","gravatar_id":"","url":"https://api.github.com/users/junwang-noaa","html_url":"https://github.com/junwang-noaa","followers_url":"https://api.github.com/users/junwang-noaa/followers","following_url":"https://api.github.com/users/junwang-noaa/following{/other_user}","gists_url":"https://api.github.com/users/junwang-noaa/gists{/gist_id}","starred_url":"https://api.github.com/users/junwang-noaa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/junwang-noaa/subscriptions","organizations_url":"https://api.github.com/users/junwang-noaa/orgs","repos_url":"https://api.github.com/users/junwang-noaa/repos","events_url":"https://api.github.com/users/junwang-noaa/events{/privacy}","received_events_url":"https://api.github.com/users/junwang-noaa/received_events","type":"User","site_admin":false},"body":"## Description\r\n\r\nCode changes have been added for inline post capability for regional applications (HAFS and LAM). The supported output grids are \"regional_latlon\" for HAFS, \"rotated_latlon\" and \"lambert_comformal\" for LAM.\r\n\r\n### Issue(s) addressed\r\n\r\nLink the issues to be closed with this PR, whether in this repository, or in another repository.\r\n\r\n- fixes ufs-weather-model [#259](https://github.com/ufs-community/ufs-weather-model/issues/259)\r\n\r\n\r\n## Testing\r\n\r\nTesting has been done on hera and orion with regional_quilt test, which is low resolution runs.\r\nNeed to test with high resolution regional runs, an older version showed error in ESMF_AttributeGet call.\r\n\r\n## Dependencies\r\n\r\nRelated PR:\r\n\r\n- fv3atm [PR #229](https://github.com/NOAA-EMC/fv3atm/pull/229)\r\n- post [PR #255](https://github.com/NOAA-EMC/EMC_post/pull/255)\r\n- This PR also requires a upp lib in hpc stack after post is merged.\r\n","created_at":"2021-01-12T20:25:41Z","updated_at":"2021-02-18T21:09:16Z","closed_at":null,"merged_at":null,"merge_commit_sha":"22b8e630d08c73c67fc70861f24c962ae50b9263","assignee":null,"assignees":[],"requested_reviewers":[{"login":"WenMeng-NOAA","id":48260754,"node_id":"MDQ6VXNlcjQ4MjYwNzU0","avatar_url":"https://avatars.githubusercontent.com/u/48260754?v=4","gravatar_id":"","url":"https://api.github.com/users/WenMeng-NOAA","html_url":"https://github.com/WenMeng-NOAA","followers_url":"https://api.github.com/users/WenMeng-NOAA/followers","following_url":"https://api.github.com/users/WenMeng-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/WenMeng-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/WenMeng-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WenMeng-NOAA/subscriptions","organizations_url":"https://api.github.com/users/WenMeng-NOAA/orgs","repos_url":"https://api.github.com/users/WenMeng-NOAA/repos","events_url":"https://api.github.com/users/WenMeng-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/WenMeng-NOAA/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/364/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/47fd6f8bcb86f5d14841fe36678dcc89e07fe0b9","head":{"label":"junwang-noaa:regional_inlinepost","ref":"regional_inlinepost","sha":"47fd6f8bcb86f5d14841fe36678dcc89e07fe0b9","user":{"login":"junwang-noaa","id":37633869,"node_id":"MDQ6VXNlcjM3NjMzODY5","avatar_url":"https://avatars.githubusercontent.com/u/37633869?v=4","gravatar_id":"","url":"https://api.github.com/users/junwang-noaa","html_url":"https://github.com/junwang-noaa","followers_url":"https://api.github.com/users/junwang-noaa/followers","following_url":"https://api.github.com/users/junwang-noaa/following{/other_user}","gists_url":"https://api.github.com/users/junwang-noaa/gists{/gist_id}","starred_url":"https://api.github.com/users/junwang-noaa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/junwang-noaa/subscriptions","organizations_url":"https://api.github.com/users/junwang-noaa/orgs","repos_url":"https://api.github.com/users/junwang-noaa/repos","events_url":"https://api.github.com/users/junwang-noaa/events{/privacy}","received_events_url":"https://api.github.com/users/junwang-noaa/received_events","type":"User","site_admin":false},"repo":{"id":215422683,"node_id":"MDEwOlJlcG9zaXRvcnkyMTU0MjI2ODM=","name":"ufs-weather-model","full_name":"junwang-noaa/ufs-weather-model","private":false,"owner":{"login":"junwang-noaa","id":37633869,"node_id":"MDQ6VXNlcjM3NjMzODY5","avatar_url":"https://avatars.githubusercontent.com/u/37633869?v=4","gravatar_id":"","url":"https://api.github.com/users/junwang-noaa","html_url":"https://github.com/junwang-noaa","followers_url":"https://api.github.com/users/junwang-noaa/followers","following_url":"https://api.github.com/users/junwang-noaa/following{/other_user}","gists_url":"https://api.github.com/users/junwang-noaa/gists{/gist_id}","starred_url":"https://api.github.com/users/junwang-noaa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/junwang-noaa/subscriptions","organizations_url":"https://api.github.com/users/junwang-noaa/orgs","repos_url":"https://api.github.com/users/junwang-noaa/repos","events_url":"https://api.github.com/users/junwang-noaa/events{/privacy}","received_events_url":"https://api.github.com/users/junwang-noaa/received_events","type":"User","site_admin":false},"html_url":"https://github.com/junwang-noaa/ufs-weather-model","description":null,"fork":true,"url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model","forks_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/deployments","created_at":"2019-10-16T00:37:12Z","updated_at":"2021-01-25T14:25:42Z","pushed_at":"2021-02-18T21:09:15Z","git_url":"git://github.com/junwang-noaa/ufs-weather-model.git","ssh_url":"git@github.com:junwang-noaa/ufs-weather-model.git","clone_url":"https://github.com/junwang-noaa/ufs-weather-model.git","svn_url":"https://github.com/junwang-noaa/ufs-weather-model","homepage":null,"size":54021,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":1,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"8dabdb4489074375212cc5be4fb6e3a6f71cc590","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/364"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/364"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/364/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/47fd6f8bcb86f5d14841fe36678dcc89e07fe0b9"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372","id":555022768,"node_id":"MDExOlB1bGxSZXF1ZXN0NTU1MDIyNzY4","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/372","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/372.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/372.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/372","number":372,"state":"open","locked":false,"title":"Stoch updates","user":{"login":"pjpegion","id":38869668,"node_id":"MDQ6VXNlcjM4ODY5NjY4","avatar_url":"https://avatars.githubusercontent.com/u/38869668?v=4","gravatar_id":"","url":"https://api.github.com/users/pjpegion","html_url":"https://github.com/pjpegion","followers_url":"https://api.github.com/users/pjpegion/followers","following_url":"https://api.github.com/users/pjpegion/following{/other_user}","gists_url":"https://api.github.com/users/pjpegion/gists{/gist_id}","starred_url":"https://api.github.com/users/pjpegion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pjpegion/subscriptions","organizations_url":"https://api.github.com/users/pjpegion/orgs","repos_url":"https://api.github.com/users/pjpegion/repos","events_url":"https://api.github.com/users/pjpegion/events{/privacy}","received_events_url":"https://api.github.com/users/pjpegion/received_events","type":"User","site_admin":false},"body":"## Description\r\nThis PR references issue https://github.com/ufs-community/ufs-weather-model/issues/371\r\n\r\nAddition of stochastic physics restarts in netCDF format that will be written at the restart interval, and at end of run.\r\nAddition of stochastic cloud perturbation and Micropyiscs perturbations for SPPT.\r\nAddition of ocean stochastic physics\r\nand\r\nclean up of stochastic physics code.\r\n\r\nIs a change of answers expected from this PR?\r\nNo changes are expected with regression tests, but stochastic physics regression test answer does change due to using a local version of ffpack instead of the fftpack in splib.\r\n\r\n\r\n\r\n### Issue(s) addressed\r\n- fixes https://github.com/ufs-community/ufs-weather-model/issues/371\r\n\r\n\r\n## Testing\r\ntesting of new science additions were tested with 1-degree coupled model ensemble forecasts out to 35-day\r\nWhat compilers / HPCs was it tested with? All tests on hera with intel and GNU compuler.\r\nAre the changes covered by regression tests? (If not, why? Do new tests need to be added?)\r\nThe cloud perturbations and microphhysics perturbations are not included in any RTs.\r\n\r\nHave the ufs-weather-model regression test been run? Currently a subset of regression tests were run on hera with intel and GNU compliers\r\n\r\nWill the code updates change regression test baseline? If yes, why?\r\nYes, stochastic physics test will be changed due to using a local version of fftpack\r\nI am waiting on code review before doing the full regression test suite.\r\n\r\n## Dependencies\r\n\r\nIf testing this branch requires non-default branches in other repositories, list them.\r\nThose branches should have matching names (ideally)\r\n\r\n- waiting on https://github.com/NOAA-EMC/MOM6/pull/48\r\n- waiting on https://github.com/NOAA-EMC/fv3atm/pull/233\r\n- waiting on https://github.com/noaa-psd/stochastic_physics/pull/35\r\n","created_at":"2021-01-14T15:50:21Z","updated_at":"2021-02-08T18:27:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":"294ee4b579bddf5bef870f802baa7e5f08ba079a","assignee":null,"assignees":[],"requested_reviewers":[{"login":"climbfuji","id":8006981,"node_id":"MDQ6VXNlcjgwMDY5ODE=","avatar_url":"https://avatars.githubusercontent.com/u/8006981?v=4","gravatar_id":"","url":"https://api.github.com/users/climbfuji","html_url":"https://github.com/climbfuji","followers_url":"https://api.github.com/users/climbfuji/followers","following_url":"https://api.github.com/users/climbfuji/following{/other_user}","gists_url":"https://api.github.com/users/climbfuji/gists{/gist_id}","starred_url":"https://api.github.com/users/climbfuji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/climbfuji/subscriptions","organizations_url":"https://api.github.com/users/climbfuji/orgs","repos_url":"https://api.github.com/users/climbfuji/repos","events_url":"https://api.github.com/users/climbfuji/events{/privacy}","received_events_url":"https://api.github.com/users/climbfuji/received_events","type":"User","site_admin":false},{"login":"DusanJovic-NOAA","id":48258889,"node_id":"MDQ6VXNlcjQ4MjU4ODg5","avatar_url":"https://avatars.githubusercontent.com/u/48258889?v=4","gravatar_id":"","url":"https://api.github.com/users/DusanJovic-NOAA","html_url":"https://github.com/DusanJovic-NOAA","followers_url":"https://api.github.com/users/DusanJovic-NOAA/followers","following_url":"https://api.github.com/users/DusanJovic-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/DusanJovic-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/DusanJovic-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DusanJovic-NOAA/subscriptions","organizations_url":"https://api.github.com/users/DusanJovic-NOAA/orgs","repos_url":"https://api.github.com/users/DusanJovic-NOAA/repos","events_url":"https://api.github.com/users/DusanJovic-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/DusanJovic-NOAA/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/372/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/4a980ce73b7c0e1dffe181d5dc766c6c5f8787fb","head":{"label":"pjpegion:stoch_updates","ref":"stoch_updates","sha":"4a980ce73b7c0e1dffe181d5dc766c6c5f8787fb","user":{"login":"pjpegion","id":38869668,"node_id":"MDQ6VXNlcjM4ODY5NjY4","avatar_url":"https://avatars.githubusercontent.com/u/38869668?v=4","gravatar_id":"","url":"https://api.github.com/users/pjpegion","html_url":"https://github.com/pjpegion","followers_url":"https://api.github.com/users/pjpegion/followers","following_url":"https://api.github.com/users/pjpegion/following{/other_user}","gists_url":"https://api.github.com/users/pjpegion/gists{/gist_id}","starred_url":"https://api.github.com/users/pjpegion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pjpegion/subscriptions","organizations_url":"https://api.github.com/users/pjpegion/orgs","repos_url":"https://api.github.com/users/pjpegion/repos","events_url":"https://api.github.com/users/pjpegion/events{/privacy}","received_events_url":"https://api.github.com/users/pjpegion/received_events","type":"User","site_admin":false},"repo":{"id":215818580,"node_id":"MDEwOlJlcG9zaXRvcnkyMTU4MTg1ODA=","name":"ufs-weather-model","full_name":"pjpegion/ufs-weather-model","private":false,"owner":{"login":"pjpegion","id":38869668,"node_id":"MDQ6VXNlcjM4ODY5NjY4","avatar_url":"https://avatars.githubusercontent.com/u/38869668?v=4","gravatar_id":"","url":"https://api.github.com/users/pjpegion","html_url":"https://github.com/pjpegion","followers_url":"https://api.github.com/users/pjpegion/followers","following_url":"https://api.github.com/users/pjpegion/following{/other_user}","gists_url":"https://api.github.com/users/pjpegion/gists{/gist_id}","starred_url":"https://api.github.com/users/pjpegion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pjpegion/subscriptions","organizations_url":"https://api.github.com/users/pjpegion/orgs","repos_url":"https://api.github.com/users/pjpegion/repos","events_url":"https://api.github.com/users/pjpegion/events{/privacy}","received_events_url":"https://api.github.com/users/pjpegion/received_events","type":"User","site_admin":false},"html_url":"https://github.com/pjpegion/ufs-weather-model","description":"UFS Medium-Range Weather Model","fork":true,"url":"https://api.github.com/repos/pjpegion/ufs-weather-model","forks_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/deployments","created_at":"2019-10-17T14:53:12Z","updated_at":"2020-12-14T15:28:59Z","pushed_at":"2021-02-08T18:26:59Z","git_url":"git://github.com/pjpegion/ufs-weather-model.git","ssh_url":"git@github.com:pjpegion/ufs-weather-model.git","clone_url":"https://github.com/pjpegion/ufs-weather-model.git","svn_url":"https://github.com/pjpegion/ufs-weather-model","homepage":"","size":53774,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":1,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"e3983a03a62a0f77286495ce227a0c94d2b7ee2a","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/372"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/372"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/372/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/4a980ce73b7c0e1dffe181d5dc766c6c5f8787fb"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383","id":556791374,"node_id":"MDExOlB1bGxSZXF1ZXN0NTU2NzkxMzc0","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/383","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/383.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/383.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/383","number":383,"state":"open","locked":false,"title":"Updatetemplate","user":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"body":"Updates PR template with added PR checklist","created_at":"2021-01-18T12:56:22Z","updated_at":"2021-02-21T15:17:12Z","closed_at":null,"merged_at":null,"merge_commit_sha":"d6d605887f211ae58e28cf0129fbe2529deb07fd","assignee":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"assignees":[{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false}],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":2431324553,"node_id":"MDU6TGFiZWwyNDMxMzI0NTUz","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/No%20Baseline%20Change","name":"No Baseline Change","color":"9AC54D","default":false,"description":"No Baseline Change"}],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/383/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/5021aff59030b0528e41a22de328be1b8c37d819","head":{"label":"DeniseWorthen:updatetemplate","ref":"updatetemplate","sha":"5021aff59030b0528e41a22de328be1b8c37d819","user":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"repo":{"id":235136072,"node_id":"MDEwOlJlcG9zaXRvcnkyMzUxMzYwNzI=","name":"ufs-weather-model","full_name":"DeniseWorthen/ufs-weather-model","private":false,"owner":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"html_url":"https://github.com/DeniseWorthen/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model","forks_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/deployments","created_at":"2020-01-20T15:40:33Z","updated_at":"2021-02-19T20:41:37Z","pushed_at":"2021-02-22T13:27:33Z","git_url":"git://github.com/DeniseWorthen/ufs-weather-model.git","ssh_url":"git@github.com:DeniseWorthen/ufs-weather-model.git","clone_url":"https://github.com/DeniseWorthen/ufs-weather-model.git","svn_url":"https://github.com/DeniseWorthen/ufs-weather-model","homepage":"","size":54877,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":1,"open_issues":0,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"250c2c52f4bb3c27c71aa422dc5ed518d3327e9f","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/383"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/383"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/383/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/5021aff59030b0528e41a22de328be1b8c37d819"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403","id":565189876,"node_id":"MDExOlB1bGxSZXF1ZXN0NTY1MTg5ODc2","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/403","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/403.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/403.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403","number":403,"state":"open","locked":false,"title":"Feature/rt automation","user":{"login":"BrianCurtis-NOAA","id":64433609,"node_id":"MDQ6VXNlcjY0NDMzNjA5","avatar_url":"https://avatars.githubusercontent.com/u/64433609?v=4","gravatar_id":"","url":"https://api.github.com/users/BrianCurtis-NOAA","html_url":"https://github.com/BrianCurtis-NOAA","followers_url":"https://api.github.com/users/BrianCurtis-NOAA/followers","following_url":"https://api.github.com/users/BrianCurtis-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/BrianCurtis-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/BrianCurtis-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BrianCurtis-NOAA/subscriptions","organizations_url":"https://api.github.com/users/BrianCurtis-NOAA/orgs","repos_url":"https://api.github.com/users/BrianCurtis-NOAA/repos","events_url":"https://api.github.com/users/BrianCurtis-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/BrianCurtis-NOAA/received_events","type":"User","site_admin":false},"body":"## Description\r\nAutomation of Regression Testing\r\n\r\nThis PR adds the directory `auto` to `tests` that contains three files rt_auto.yml, rt_auto.sh and rt_auto.py.\r\n\r\nCode managers will add labels to PR's that are ready for regression testing and eventually a CRON job will run this script every 20 minutes.\r\n\r\n1. rt_auto.py: Python code to be used on our supported HPC's to automatically check all pull requests to a specific repository for a specific label. Each label will contain three parts, for example a label is named `Auto-RT-hera`\r\n A: `Auto` which tells the python code that label is to be processed.\r\n B: `RT` which is the test requested to run (check rt_auto.yml for test labels).\r\n C: `hera` which specifies the machine the test is to be run on.\r\n Currently `Auto-RT-hera` `Auto-RT-orion` `Auto-RT-gaea` are working. I'm looking to get python packages added on Jet first.\r\n1. rt_auto.yml: Specific information the code needs to run\r\n1. rt_auto.sh: a bash script to run the python code, soon to be implemented through cron jobs.\r\n\r\nCurrent functions:\r\n1. Automatically clones the PR repo\r\n1. Automatically runs the full regression test suite\r\n1. Commits/Pushes logs to the PR repo\r\n1. Deletes the cloned repo it created to run tests (NOTE: Does NOT yet delete the stmp run data automatically)\r\n1. Each run, checks for closed PR's and deleted the directory it had created to run those regression tests. (NOTE: Also does not delete the stmp run dir)\r\n\r\nPlanned future functions:\r\n- Automatically delete the STMP run dir\r\n- Automatically create new baselines\r\n- Automatically run full regression test suite on new baselines\r\n- Automatically add new baselines to baseline directory\r\n\r\nDiscussion Topics:\r\n- Currently the planned CRON job implementation will use BrianCurtis-NOAA HPC accounts and GitHub credentials to run. This optimally should move to a bot GitHub account and a generic user account on NOAA HPC's. \r\n\r\n### Issue(s) addressed\r\nFixes #306 \r\n\r\n## Testing\r\nThe use of this new script will be used as its test.\r\n\r\n## Dependencies\r\nNone\r\n\r\nDo PRs in upstream repositories need to be merged first?\r\nNo, these changes are independent of the main functionality of the repo.\r\n","created_at":"2021-02-01T13:39:54Z","updated_at":"2021-02-23T01:58:43Z","closed_at":null,"merged_at":null,"merge_commit_sha":"4556730116ae76a1b52d0574ba238f23dff11cea","assignee":null,"assignees":[],"requested_reviewers":[{"login":"junwang-noaa","id":37633869,"node_id":"MDQ6VXNlcjM3NjMzODY5","avatar_url":"https://avatars.githubusercontent.com/u/37633869?v=4","gravatar_id":"","url":"https://api.github.com/users/junwang-noaa","html_url":"https://github.com/junwang-noaa","followers_url":"https://api.github.com/users/junwang-noaa/followers","following_url":"https://api.github.com/users/junwang-noaa/following{/other_user}","gists_url":"https://api.github.com/users/junwang-noaa/gists{/gist_id}","starred_url":"https://api.github.com/users/junwang-noaa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/junwang-noaa/subscriptions","organizations_url":"https://api.github.com/users/junwang-noaa/orgs","repos_url":"https://api.github.com/users/junwang-noaa/repos","events_url":"https://api.github.com/users/junwang-noaa/events{/privacy}","received_events_url":"https://api.github.com/users/junwang-noaa/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[{"id":2686267722,"node_id":"MDU6TGFiZWwyNjg2MjY3NzIy","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Auto-RT-hera","name":"Auto-RT-hera","color":"5319E7","default":false,"description":"Start Automatic Regression Test on Hera"},{"id":2736875174,"node_id":"MDU6TGFiZWwyNzM2ODc1MTc0","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Auto-RT-jet","name":"Auto-RT-jet","color":"2908C6","default":false,"description":"Start Automatic Regression Test on Jet"}],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/588fe3d4fdb9bce20aabbfd96e359777cd8dcb82","head":{"label":"BrianCurtis-NOAA:feature/rt-automation","ref":"feature/rt-automation","sha":"588fe3d4fdb9bce20aabbfd96e359777cd8dcb82","user":{"login":"BrianCurtis-NOAA","id":64433609,"node_id":"MDQ6VXNlcjY0NDMzNjA5","avatar_url":"https://avatars.githubusercontent.com/u/64433609?v=4","gravatar_id":"","url":"https://api.github.com/users/BrianCurtis-NOAA","html_url":"https://github.com/BrianCurtis-NOAA","followers_url":"https://api.github.com/users/BrianCurtis-NOAA/followers","following_url":"https://api.github.com/users/BrianCurtis-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/BrianCurtis-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/BrianCurtis-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BrianCurtis-NOAA/subscriptions","organizations_url":"https://api.github.com/users/BrianCurtis-NOAA/orgs","repos_url":"https://api.github.com/users/BrianCurtis-NOAA/repos","events_url":"https://api.github.com/users/BrianCurtis-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/BrianCurtis-NOAA/received_events","type":"User","site_admin":false},"repo":{"id":284760811,"node_id":"MDEwOlJlcG9zaXRvcnkyODQ3NjA4MTE=","name":"ufs-weather-model","full_name":"BrianCurtis-NOAA/ufs-weather-model","private":false,"owner":{"login":"BrianCurtis-NOAA","id":64433609,"node_id":"MDQ6VXNlcjY0NDMzNjA5","avatar_url":"https://avatars.githubusercontent.com/u/64433609?v=4","gravatar_id":"","url":"https://api.github.com/users/BrianCurtis-NOAA","html_url":"https://github.com/BrianCurtis-NOAA","followers_url":"https://api.github.com/users/BrianCurtis-NOAA/followers","following_url":"https://api.github.com/users/BrianCurtis-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/BrianCurtis-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/BrianCurtis-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BrianCurtis-NOAA/subscriptions","organizations_url":"https://api.github.com/users/BrianCurtis-NOAA/orgs","repos_url":"https://api.github.com/users/BrianCurtis-NOAA/repos","events_url":"https://api.github.com/users/BrianCurtis-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/BrianCurtis-NOAA/received_events","type":"User","site_admin":false},"html_url":"https://github.com/BrianCurtis-NOAA/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model","forks_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/deployments","created_at":"2020-08-03T17:14:47Z","updated_at":"2021-02-22T14:15:05Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/BrianCurtis-NOAA/ufs-weather-model.git","ssh_url":"git@github.com:BrianCurtis-NOAA/ufs-weather-model.git","clone_url":"https://github.com/BrianCurtis-NOAA/ufs-weather-model.git","svn_url":"https://github.com/BrianCurtis-NOAA/ufs-weather-model","homepage":"","size":56349,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":1,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"250c2c52f4bb3c27c71aa422dc5ed518d3327e9f","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/403"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/588fe3d4fdb9bce20aabbfd96e359777cd8dcb82"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404","id":565290227,"node_id":"MDExOlB1bGxSZXF1ZXN0NTY1MjkwMjI3","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/404","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/404.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/404.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/404","number":404,"state":"open","locked":false,"title":"use FMS 2020.04.02 CMakeLists.txt","user":{"login":"mlee03","id":58964324,"node_id":"MDQ6VXNlcjU4OTY0MzI0","avatar_url":"https://avatars.githubusercontent.com/u/58964324?v=4","gravatar_id":"","url":"https://api.github.com/users/mlee03","html_url":"https://github.com/mlee03","followers_url":"https://api.github.com/users/mlee03/followers","following_url":"https://api.github.com/users/mlee03/following{/other_user}","gists_url":"https://api.github.com/users/mlee03/gists{/gist_id}","starred_url":"https://api.github.com/users/mlee03/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mlee03/subscriptions","organizations_url":"https://api.github.com/users/mlee03/orgs","repos_url":"https://api.github.com/users/mlee03/repos","events_url":"https://api.github.com/users/mlee03/events{/privacy}","received_events_url":"https://api.github.com/users/mlee03/received_events","type":"User","site_admin":false},"body":"## Description\r\n\r\nThis PR updates FMS to version ``2020.04.02`` and includes three notable changes:\r\n\r\n1. FMS 2020.04.01 will default to use the newer io implementation called fms2_io. To use the old mpp_io that is in 2019.01.03, the namelist variable ``use_mpp_io=.true.`` is required for interpolator_nml, xgrid_nml, amip_interp_nml, and diag_manager_nml; and ``use_mpp_bug=.true.`` in data_override_nml\r\n\r\n2. An additional option has been implemented in the file section of the diag_table and only affects files using the optional diag_table features. Users can now specify the last field as \"begin\", \"middle\", or \"end\" in order to have more control of the output filename. An example specification is shown below:
\"ocn%4yr%2mo%2dy%2hr\", 6,  \"hours\", 1, \"hours\", \"time\", 6, \"hours\", \"1901 1 1 0 0 0\", 0, \"\", \"begin\"
\r\nGiven the above specification, the file corresponding to the first 6 hours of the run will be named \r\n``ocn_2016_10_03_00.nc`` for \"begin\"\r\n``ocn_2016_10_03_03.nc`` for \"middle\"\r\n ``ocn_2016_10_03_06.nc`` for \"end\"\r\nIf the last field is not specified , \"middle\" will be used as default. More details are provided [here](https://github.com/NOAA-GFDL/FMS/pull/660#issue-552786503)\r\n\r\n3. FMS CMakeLists.txt is incorporated into the UFS Weather Model CMake build.\r\n\r\nTwo metadata differences may be observed with nccmp:\r\n\r\n1. NetCDF file format change from NC_FORMAT_NETCDF4_CLASSIC to NC_FORMAT_64BIT. Users can specify ``netcdf_default_format=\"classic\"`` in ``fms2_io_nml`` to use NC_FORMAT_NETCDF4_CLASSIC.\r\n2. Checksum differences in FV3 32-bit runs due to a bug fix in mpp_chksum.\r\n\r\nOther than these changes, no answer changes are expected.\r\n\r\n### Issue(s) addressed\r\n- fixes #391\r\n\r\n## Testing\r\nLast round of regression tests are running on Orion with Intel/2018.4. Stay-tuned.\r\n\r\n## Dependencies\r\nThis PR depends on \r\n[PR 37](https://github.com/noaa-psd/stochastic_physics/pull/37) in noaa-psd/stochastic_physics. PR 37 has been merged in and this PR points to the updated stochastic_phyics submodule. \r\n[PR 243](https://github.com/NOAA-EMC/fv3atm/pull/243) in NOAA-EMC/fv3atm\r\n\r\n","created_at":"2021-02-01T15:53:33Z","updated_at":"2021-02-03T22:33:47Z","closed_at":null,"merged_at":null,"merge_commit_sha":"4bb0e369f7d0e5d1f48950a8850bd0684b826c36","assignee":null,"assignees":[],"requested_reviewers":[{"login":"jiandewang","id":14180427,"node_id":"MDQ6VXNlcjE0MTgwNDI3","avatar_url":"https://avatars.githubusercontent.com/u/14180427?v=4","gravatar_id":"","url":"https://api.github.com/users/jiandewang","html_url":"https://github.com/jiandewang","followers_url":"https://api.github.com/users/jiandewang/followers","following_url":"https://api.github.com/users/jiandewang/following{/other_user}","gists_url":"https://api.github.com/users/jiandewang/gists{/gist_id}","starred_url":"https://api.github.com/users/jiandewang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jiandewang/subscriptions","organizations_url":"https://api.github.com/users/jiandewang/orgs","repos_url":"https://api.github.com/users/jiandewang/repos","events_url":"https://api.github.com/users/jiandewang/events{/privacy}","received_events_url":"https://api.github.com/users/jiandewang/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/404/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/8c3377890a063bfc218b7676232fa9f2afe6b717","head":{"label":"mlee03:fms/2020.04.02","ref":"fms/2020.04.02","sha":"8c3377890a063bfc218b7676232fa9f2afe6b717","user":{"login":"mlee03","id":58964324,"node_id":"MDQ6VXNlcjU4OTY0MzI0","avatar_url":"https://avatars.githubusercontent.com/u/58964324?v=4","gravatar_id":"","url":"https://api.github.com/users/mlee03","html_url":"https://github.com/mlee03","followers_url":"https://api.github.com/users/mlee03/followers","following_url":"https://api.github.com/users/mlee03/following{/other_user}","gists_url":"https://api.github.com/users/mlee03/gists{/gist_id}","starred_url":"https://api.github.com/users/mlee03/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mlee03/subscriptions","organizations_url":"https://api.github.com/users/mlee03/orgs","repos_url":"https://api.github.com/users/mlee03/repos","events_url":"https://api.github.com/users/mlee03/events{/privacy}","received_events_url":"https://api.github.com/users/mlee03/received_events","type":"User","site_admin":false},"repo":{"id":332761705,"node_id":"MDEwOlJlcG9zaXRvcnkzMzI3NjE3MDU=","name":"ufs-weather-model","full_name":"mlee03/ufs-weather-model","private":false,"owner":{"login":"mlee03","id":58964324,"node_id":"MDQ6VXNlcjU4OTY0MzI0","avatar_url":"https://avatars.githubusercontent.com/u/58964324?v=4","gravatar_id":"","url":"https://api.github.com/users/mlee03","html_url":"https://github.com/mlee03","followers_url":"https://api.github.com/users/mlee03/followers","following_url":"https://api.github.com/users/mlee03/following{/other_user}","gists_url":"https://api.github.com/users/mlee03/gists{/gist_id}","starred_url":"https://api.github.com/users/mlee03/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mlee03/subscriptions","organizations_url":"https://api.github.com/users/mlee03/orgs","repos_url":"https://api.github.com/users/mlee03/repos","events_url":"https://api.github.com/users/mlee03/events{/privacy}","received_events_url":"https://api.github.com/users/mlee03/received_events","type":"User","site_admin":false},"html_url":"https://github.com/mlee03/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/mlee03/ufs-weather-model","forks_url":"https://api.github.com/repos/mlee03/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/mlee03/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mlee03/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mlee03/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/mlee03/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/mlee03/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/mlee03/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/mlee03/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/mlee03/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/mlee03/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/mlee03/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mlee03/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mlee03/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/mlee03/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mlee03/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/mlee03/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/mlee03/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/mlee03/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/mlee03/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/mlee03/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/mlee03/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/mlee03/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/mlee03/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/mlee03/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/mlee03/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/mlee03/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mlee03/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/mlee03/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mlee03/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/mlee03/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/mlee03/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/mlee03/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/mlee03/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mlee03/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/mlee03/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/mlee03/ufs-weather-model/deployments","created_at":"2021-01-25T13:47:51Z","updated_at":"2021-01-25T13:47:53Z","pushed_at":"2021-02-11T12:40:35Z","git_url":"git://github.com/mlee03/ufs-weather-model.git","ssh_url":"git@github.com:mlee03/ufs-weather-model.git","clone_url":"https://github.com/mlee03/ufs-weather-model.git","svn_url":"https://github.com/mlee03/ufs-weather-model","homepage":"","size":56676,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"e3983a03a62a0f77286495ce227a0c94d2b7ee2a","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/404"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/404"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/404/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/8c3377890a063bfc218b7676232fa9f2afe6b717"}},"author_association":"CONTRIBUTOR","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418","id":574412964,"node_id":"MDExOlB1bGxSZXF1ZXN0NTc0NDEyOTY0","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/418","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/418.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/418.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/418","number":418,"state":"open","locked":false,"title":"Update ccpp-physics. Make RRTMGP thread safe","user":{"login":"dustinswales","id":13949033,"node_id":"MDQ6VXNlcjEzOTQ5MDMz","avatar_url":"https://avatars.githubusercontent.com/u/13949033?v=4","gravatar_id":"","url":"https://api.github.com/users/dustinswales","html_url":"https://github.com/dustinswales","followers_url":"https://api.github.com/users/dustinswales/followers","following_url":"https://api.github.com/users/dustinswales/following{/other_user}","gists_url":"https://api.github.com/users/dustinswales/gists{/gist_id}","starred_url":"https://api.github.com/users/dustinswales/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dustinswales/subscriptions","organizations_url":"https://api.github.com/users/dustinswales/orgs","repos_url":"https://api.github.com/users/dustinswales/repos","events_url":"https://api.github.com/users/dustinswales/events{/privacy}","received_events_url":"https://api.github.com/users/dustinswales/received_events","type":"User","site_admin":false},"body":"This PR contains several changes to the initialization and setup of the RRTMGP radiation scheme to allow for use across multiple openMP threads.\r\n*) Moved Interstitial RRTMGP DDTs (ty_rrtmgp_gas_optics, ty_cloud_optics) to static fields defined during initialization in module memory.\r\n*) Add \"$omp critical\" statements around the calling type-bound procedures during initialization.\r\n*) Move allocation of ty_gas_conc from Interstitial to GFS_typedefs. Initialize ty_gas_concs for all blocks during initialization.\r\n\r\nThis issue was brought to our attention by @yangfanglin and Qingfu Liu at EMC while testing RRTMGP in high-resolution cases, which require multiple threads.\r\n\r\nThe GP regression tests on hera using Intel were successful.\r\nThere are no changes to the baselines\r\n\r\nWaiting on\r\nhttps://github.com/NCAR/ccpp-physics/pull/568\r\nhttps://github.com/NOAA-EMC/fv3atm/pull/247","created_at":"2021-02-16T19:06:50Z","updated_at":"2021-02-18T21:37:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":"92731b701323b14bab0e47581e0adebfe0c83079","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/418/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ccb65dacf6f3bc6289fff6bee5413969eb75b06e","head":{"label":"dustinswales:hotfix_GPthreading","ref":"hotfix_GPthreading","sha":"ccb65dacf6f3bc6289fff6bee5413969eb75b06e","user":{"login":"dustinswales","id":13949033,"node_id":"MDQ6VXNlcjEzOTQ5MDMz","avatar_url":"https://avatars.githubusercontent.com/u/13949033?v=4","gravatar_id":"","url":"https://api.github.com/users/dustinswales","html_url":"https://github.com/dustinswales","followers_url":"https://api.github.com/users/dustinswales/followers","following_url":"https://api.github.com/users/dustinswales/following{/other_user}","gists_url":"https://api.github.com/users/dustinswales/gists{/gist_id}","starred_url":"https://api.github.com/users/dustinswales/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dustinswales/subscriptions","organizations_url":"https://api.github.com/users/dustinswales/orgs","repos_url":"https://api.github.com/users/dustinswales/repos","events_url":"https://api.github.com/users/dustinswales/events{/privacy}","received_events_url":"https://api.github.com/users/dustinswales/received_events","type":"User","site_admin":false},"repo":{"id":223220247,"node_id":"MDEwOlJlcG9zaXRvcnkyMjMyMjAyNDc=","name":"ufs-weather-model","full_name":"dustinswales/ufs-weather-model","private":false,"owner":{"login":"dustinswales","id":13949033,"node_id":"MDQ6VXNlcjEzOTQ5MDMz","avatar_url":"https://avatars.githubusercontent.com/u/13949033?v=4","gravatar_id":"","url":"https://api.github.com/users/dustinswales","html_url":"https://github.com/dustinswales","followers_url":"https://api.github.com/users/dustinswales/followers","following_url":"https://api.github.com/users/dustinswales/following{/other_user}","gists_url":"https://api.github.com/users/dustinswales/gists{/gist_id}","starred_url":"https://api.github.com/users/dustinswales/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dustinswales/subscriptions","organizations_url":"https://api.github.com/users/dustinswales/orgs","repos_url":"https://api.github.com/users/dustinswales/repos","events_url":"https://api.github.com/users/dustinswales/events{/privacy}","received_events_url":"https://api.github.com/users/dustinswales/received_events","type":"User","site_admin":false},"html_url":"https://github.com/dustinswales/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/dustinswales/ufs-weather-model","forks_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/deployments","created_at":"2019-11-21T16:45:23Z","updated_at":"2020-06-29T17:16:49Z","pushed_at":"2021-02-18T21:36:59Z","git_url":"git://github.com/dustinswales/ufs-weather-model.git","ssh_url":"git@github.com:dustinswales/ufs-weather-model.git","clone_url":"https://github.com/dustinswales/ufs-weather-model.git","svn_url":"https://github.com/dustinswales/ufs-weather-model","homepage":"","size":53842,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"gpl-3.0","name":"GNU General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"d6a0b8cf636b92f821302ec152803ea80806ba49","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/418"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/418"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/418/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ccb65dacf6f3bc6289fff6bee5413969eb75b06e"}},"author_association":"CONTRIBUTOR","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422","id":576044955,"node_id":"MDExOlB1bGxSZXF1ZXN0NTc2MDQ0OTU1","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/422","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/422.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/422.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/422","number":422,"state":"open","locked":false,"title":"Use aws ec2 for CI test","user":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"body":"### Issue(s) addressed\r\n#307 \r\n\r\n## Testing\r\n\r\nChanges in this PR are only related to CI (tests/ci directory) and Github Actions (.github/workflows directory), with only minor changes in default_vars.sh, run_test.sh, and utest.\r\n\r\nThe new CI tests were tested here: https://github.com/MinsukJi-NOAA/ufs-weather-model/actions/runs/579193301\r\n\r\n## Dependencies\r\n\r\nNo dependencies.","created_at":"2021-02-18T22:41:38Z","updated_at":"2021-02-18T22:41:38Z","closed_at":null,"merged_at":null,"merge_commit_sha":"cc937132015248d3a7ea3e0ba8cb7636e5a49495","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/422/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ad0c6cc61c83b6eaae63ddfafe1a1374c3821fe1","head":{"label":"MinsukJi-NOAA:feature/ci-aws","ref":"feature/ci-aws","sha":"ad0c6cc61c83b6eaae63ddfafe1a1374c3821fe1","user":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"repo":{"id":238745929,"node_id":"MDEwOlJlcG9zaXRvcnkyMzg3NDU5Mjk=","name":"ufs-weather-model","full_name":"MinsukJi-NOAA/ufs-weather-model","private":false,"owner":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"html_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model","forks_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/deployments","created_at":"2020-02-06T17:32:41Z","updated_at":"2021-02-18T22:08:04Z","pushed_at":"2021-02-22T20:56:19Z","git_url":"git://github.com/MinsukJi-NOAA/ufs-weather-model.git","ssh_url":"git@github.com:MinsukJi-NOAA/ufs-weather-model.git","clone_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model.git","svn_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model","homepage":"","size":55062,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":1,"open_issues":0,"watchers":0,"default_branch":"feature/ci-aws"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"8dabdb4489074375212cc5be4fb6e3a6f71cc590","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/422"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/422"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/422/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ad0c6cc61c83b6eaae63ddfafe1a1374c3821fe1"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425","id":577111559,"node_id":"MDExOlB1bGxSZXF1ZXN0NTc3MTExNTU5","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/425","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/425.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/425.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/425","number":425,"state":"open","locked":false,"title":"Move Noah MP init to CCPP and add/update Noah MP regression tests","user":{"login":"climbfuji","id":8006981,"node_id":"MDQ6VXNlcjgwMDY5ODE=","avatar_url":"https://avatars.githubusercontent.com/u/8006981?v=4","gravatar_id":"","url":"https://api.github.com/users/climbfuji","html_url":"https://github.com/climbfuji","followers_url":"https://api.github.com/users/climbfuji/followers","following_url":"https://api.github.com/users/climbfuji/following{/other_user}","gists_url":"https://api.github.com/users/climbfuji/gists{/gist_id}","starred_url":"https://api.github.com/users/climbfuji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/climbfuji/subscriptions","organizations_url":"https://api.github.com/users/climbfuji/orgs","repos_url":"https://api.github.com/users/climbfuji/repos","events_url":"https://api.github.com/users/climbfuji/events{/privacy}","received_events_url":"https://api.github.com/users/climbfuji/received_events","type":"User","site_admin":false},"body":"## Description\r\n\r\n# PLACEHOLDER\r\n\r\n(Instructions: this, and all subsequent sections of text should be removed and filled in as appropriate.)\r\nProvide a detailed description of what this PR does.\r\nWhat bug does it fix, or what feature does it add?\r\nIs a change of answers expected from this PR?\r\nAre any library updates included in this PR (modulefiles etc.)?\r\n\r\n### Issue(s) addressed\r\n\r\nLink the issues to be closed with this PR, whether in this repository, or in another repository.\r\n(Remember, issues should always be created before starting work on a PR branch!)\r\n- fixes #\r\n- fixes noaa-emc/fv3atm/issues/\r\n\r\n## Testing\r\n\r\nHow were these changes tested?\r\nWhat compilers / HPCs was it tested with?\r\nAre the changes covered by regression tests? (If not, why? Do new tests need to be added?)\r\nHave regression tests and unit tests (utests) been run? On which platforms and with which compilers? (Note that unit tests can only be run on tier-1 platforms)\r\n\r\n## Dependencies\r\n\r\nIf testing this branch requires non-default branches in other repositories, list them.\r\nThose branches should have matching names (ideally)\r\n\r\nDo PRs in upstream repositories need to be merged first?\r\nIf so add the \"waiting for other repos\" label and list the upstream PRs\r\n- waiting on noaa-emc/nems/pull/\r\n- waiting on noaa-emc/fv3atm/pull/\r\n","created_at":"2021-02-21T13:26:25Z","updated_at":"2021-02-22T23:45:38Z","closed_at":null,"merged_at":null,"merge_commit_sha":"022235eb81d3278c63fc5e8abd257805fceed0a9","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":true,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/425/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ac99b2500534dc8528b84424c562769317cceb2f","head":{"label":"climbfuji:noahmp_init_in_ccpp","ref":"noahmp_init_in_ccpp","sha":"ac99b2500534dc8528b84424c562769317cceb2f","user":{"login":"climbfuji","id":8006981,"node_id":"MDQ6VXNlcjgwMDY5ODE=","avatar_url":"https://avatars.githubusercontent.com/u/8006981?v=4","gravatar_id":"","url":"https://api.github.com/users/climbfuji","html_url":"https://github.com/climbfuji","followers_url":"https://api.github.com/users/climbfuji/followers","following_url":"https://api.github.com/users/climbfuji/following{/other_user}","gists_url":"https://api.github.com/users/climbfuji/gists{/gist_id}","starred_url":"https://api.github.com/users/climbfuji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/climbfuji/subscriptions","organizations_url":"https://api.github.com/users/climbfuji/orgs","repos_url":"https://api.github.com/users/climbfuji/repos","events_url":"https://api.github.com/users/climbfuji/events{/privacy}","received_events_url":"https://api.github.com/users/climbfuji/received_events","type":"User","site_admin":false},"repo":{"id":215429735,"node_id":"MDEwOlJlcG9zaXRvcnkyMTU0Mjk3MzU=","name":"ufs-weather-model","full_name":"climbfuji/ufs-weather-model","private":false,"owner":{"login":"climbfuji","id":8006981,"node_id":"MDQ6VXNlcjgwMDY5ODE=","avatar_url":"https://avatars.githubusercontent.com/u/8006981?v=4","gravatar_id":"","url":"https://api.github.com/users/climbfuji","html_url":"https://github.com/climbfuji","followers_url":"https://api.github.com/users/climbfuji/followers","following_url":"https://api.github.com/users/climbfuji/following{/other_user}","gists_url":"https://api.github.com/users/climbfuji/gists{/gist_id}","starred_url":"https://api.github.com/users/climbfuji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/climbfuji/subscriptions","organizations_url":"https://api.github.com/users/climbfuji/orgs","repos_url":"https://api.github.com/users/climbfuji/repos","events_url":"https://api.github.com/users/climbfuji/events{/privacy}","received_events_url":"https://api.github.com/users/climbfuji/received_events","type":"User","site_admin":false},"html_url":"https://github.com/climbfuji/ufs-weather-model","description":null,"fork":true,"url":"https://api.github.com/repos/climbfuji/ufs-weather-model","forks_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/deployments","created_at":"2019-10-16T01:30:25Z","updated_at":"2020-05-13T13:33:06Z","pushed_at":"2021-02-22T23:45:37Z","git_url":"git://github.com/climbfuji/ufs-weather-model.git","ssh_url":"git@github.com:climbfuji/ufs-weather-model.git","clone_url":"https://github.com/climbfuji/ufs-weather-model.git","svn_url":"https://github.com/climbfuji/ufs-weather-model","homepage":null,"size":59574,"stargazers_count":0,"watchers_count":0,"language":"C","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"gsd/develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"250c2c52f4bb3c27c71aa422dc5ed518d3327e9f","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/425"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/425"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/425/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ac99b2500534dc8528b84424c562769317cceb2f"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426","id":577127006,"node_id":"MDExOlB1bGxSZXF1ZXN0NTc3MTI3MDA2","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/426","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/426.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/426.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/426","number":426,"state":"open","locked":false,"title":"correct benchmark diag_tables for coupled model configurations","user":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"body":"## Description\r\n\r\nAdds configuration variable DIAG_TABLE to allow different diag_tables to be set for the coupled model depending on configuration: non-benchmark, benchmark and benchmark-v16.\r\n\r\nThe benchmark and benchmark-v16 diag tables are identical except for the removal of the ``grid_spec``, ``atmos_4xdaily ``and ``atmos_static files``. The benchmark-v16 diag table differs from the diag_table_gfsv16 in the input data directory ``FV3_input_data384`` by the ocean output fields.\r\n\r\n### Issue(s) addressed\r\n\r\n- fixes #412 \r\n- Adds cpld_bmarkfrac_v16_35d (not used in RT testing) \r\n\r\n## Testing\r\n\r\nBenchmark coupled baselines on Hera change because of the difference in the fields written to the phyf and dynf files. Restart files for all components are b4b with current baselines for benchmark baselines. Non-benchmark baselines for the coupled model reproduce existing baselines.\r\n\r\n","created_at":"2021-02-21T15:10:43Z","updated_at":"2021-02-22T10:00:53Z","closed_at":null,"merged_at":null,"merge_commit_sha":"48e87c2f0270cbcca318d78194c9ab1e4739b366","assignee":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"assignees":[{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false}],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":2431326682,"node_id":"MDU6TGFiZWwyNDMxMzI2Njgy","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Baseline%20Change","name":"Baseline Change","color":"C35F30","default":false,"description":"Baseline Change"}],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/426/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/c1af1a2037e4d4872e66eaec04d88e5bf48977a4","head":{"label":"DeniseWorthen:feature/diagtables","ref":"feature/diagtables","sha":"c1af1a2037e4d4872e66eaec04d88e5bf48977a4","user":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"repo":{"id":235136072,"node_id":"MDEwOlJlcG9zaXRvcnkyMzUxMzYwNzI=","name":"ufs-weather-model","full_name":"DeniseWorthen/ufs-weather-model","private":false,"owner":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"html_url":"https://github.com/DeniseWorthen/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model","forks_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/deployments","created_at":"2020-01-20T15:40:33Z","updated_at":"2021-02-19T20:41:37Z","pushed_at":"2021-02-22T13:27:33Z","git_url":"git://github.com/DeniseWorthen/ufs-weather-model.git","ssh_url":"git@github.com:DeniseWorthen/ufs-weather-model.git","clone_url":"https://github.com/DeniseWorthen/ufs-weather-model.git","svn_url":"https://github.com/DeniseWorthen/ufs-weather-model","homepage":"","size":54877,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":1,"open_issues":0,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"250c2c52f4bb3c27c71aa422dc5ed518d3327e9f","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/426"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/426"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/426/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/c1af1a2037e4d4872e66eaec04d88e5bf48977a4"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431","id":577935932,"node_id":"MDExOlB1bGxSZXF1ZXN0NTc3OTM1OTMy","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/431","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/431.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/431.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/431","number":431,"state":"open","locked":false,"title":"Move bm_ic directory out of input-data directory","user":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"body":"### Issue(s) addressed\r\n\r\nIssue #430 \r\n\r\n## Testing\r\n\r\nRun a 35-day test on Hera and Orion to make sure copying of IC data between run directory and bm_ic directory works.\r\n\r\n## Dependencies\r\n\r\nNo dependencies.\r\n","created_at":"2021-02-22T20:59:25Z","updated_at":"2021-02-22T20:59:25Z","closed_at":null,"merged_at":null,"merge_commit_sha":"59572cf4c0873af91a4b0e35fcc61f0b4d55b424","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/431/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/43db72ea271a6c5cd27615095b78e0bf33bf9145","head":{"label":"MinsukJi-NOAA:feature/35d_bm_ic","ref":"feature/35d_bm_ic","sha":"43db72ea271a6c5cd27615095b78e0bf33bf9145","user":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"repo":{"id":238745929,"node_id":"MDEwOlJlcG9zaXRvcnkyMzg3NDU5Mjk=","name":"ufs-weather-model","full_name":"MinsukJi-NOAA/ufs-weather-model","private":false,"owner":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"html_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model","forks_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/deployments","created_at":"2020-02-06T17:32:41Z","updated_at":"2021-02-18T22:08:04Z","pushed_at":"2021-02-22T20:56:19Z","git_url":"git://github.com/MinsukJi-NOAA/ufs-weather-model.git","ssh_url":"git@github.com:MinsukJi-NOAA/ufs-weather-model.git","clone_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model.git","svn_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model","homepage":"","size":55062,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":1,"open_issues":0,"watchers":0,"default_branch":"feature/ci-aws"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"250c2c52f4bb3c27c71aa422dc5ed518d3327e9f","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/431"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/431"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/431/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/43db72ea271a6c5cd27615095b78e0bf33bf9145"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null}] +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/364/labels HTTP/1.1" 200 2 +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/364/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:05 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Thu, 18 Feb 2021 21:09:16 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4981', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '19', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:79644D:11D28EB:6034621D'} [] +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/372/labels HTTP/1.1" 200 2 +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/372/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:05 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Mon, 22 Feb 2021 17:18:21 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4980', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '20', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:79645A:11D2920:6034621D'} [] +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/383/labels HTTP/1.1" 200 None +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/383/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:05 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"5a8d63322775f74b8cec5bf8363459aea5c46a303fe961a56df68849bcd57b5f"', 'last-modified': 'Sun, 21 Feb 2021 15:17:12 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4979', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '21', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:79645E:11D292E:6034621D'} [{"id":2431324553,"node_id":"MDU6TGFiZWwyNDMxMzI0NTUz","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/No%20Baseline%20Change","name":"No Baseline Change","color":"9AC54D","default":false,"description":"No Baseline Change"}] +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/403/labels HTTP/1.1" 200 None +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:06 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"4fcf3ae5b4c61e55530f73c0bea52fc167d2e1aaca23e3c088318e21d239f23a"', 'last-modified': 'Tue, 23 Feb 2021 01:58:43 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4978', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '22', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:796465:11D2947:6034621D'} [{"id":2686267722,"node_id":"MDU6TGFiZWwyNjg2MjY3NzIy","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Auto-RT-hera","name":"Auto-RT-hera","color":"5319E7","default":false,"description":"Start Automatic Regression Test on Hera"},{"id":2736875174,"node_id":"MDU6TGFiZWwyNzM2ODc1MTc0","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Auto-RT-jet","name":"Auto-RT-jet","color":"2908C6","default":false,"description":"Start Automatic Regression Test on Jet"}] +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/404/labels HTTP/1.1" 200 2 +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/404/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:06 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Thu, 11 Feb 2021 12:38:13 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4977', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '23', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:796473:11D2985:6034621E'} [] +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/418/labels HTTP/1.1" 200 2 +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/418/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:07 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Thu, 18 Feb 2021 21:37:00 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4976', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '24', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:796488:11D29B7:6034621E'} [] +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/422/labels HTTP/1.1" 200 2 +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/422/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:07 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Thu, 18 Feb 2021 22:41:38 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4975', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '25', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:796491:11D29DA:6034621F'} [] +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/425/labels HTTP/1.1" 200 2 +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/425/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:07 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Mon, 22 Feb 2021 23:45:38 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4974', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '26', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:796497:11D29F6:6034621F'} [] +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/426/labels HTTP/1.1" 200 None +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/426/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:07 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"13b24385614d4e40adf61ba80051baf16415017cf9014c52f5bb73ae9b2e5ad3"', 'last-modified': 'Mon, 22 Feb 2021 10:00:53 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4973', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '27', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:7964A8:11D2A1F:6034621F'} [{"id":2431326682,"node_id":"MDU6TGFiZWwyNDMxMzI2Njgy","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Baseline%20Change","name":"Baseline Change","color":"C35F30","default":false,"description":"Baseline Change"}] +DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/431/labels HTTP/1.1" 200 2 +DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/431/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:08 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Mon, 22 Feb 2021 20:59:25 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4972', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '28', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:7964AD:11D2A2E:6034621F'} [] +INFO:MAIN:Adding all jobs to an object list and running them. +INFO:MAIN:Starting Job: <__main__.Job object at 0x7eff3cb57c70> +DEBUG:MAIN:Calling remove_pr_label +INFO:JOB:Removing Label: Label(name="Auto-RT-hera") +DEBUG:urllib3.connectionpool:https://api.github.com:443 "DELETE /repos/ufs-community/ufs-weather-model/issues/403/labels/Auto-RT-hera HTTP/1.1" 200 None +DEBUG:github.Requester:DELETE https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403/labels/Auto-RT-hera {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:08 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"2cbebc602938bc2d07802dad5d0c20d25cd8a91b084f57c73d2cbff233c774a2"', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': '', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4971', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '29', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:7964B7:11D2A61:60346220'} [{"id":2736875174,"node_id":"MDU6TGFiZWwyNzM2ODc1MTc0","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Auto-RT-jet","name":"Auto-RT-jet","color":"2908C6","default":false,"description":"Start Automatic Regression Test on Jet"}] +DEBUG:MAIN:Calling clone_pr_repo +INFO:JOB/CLONE_PR_REPO:Starting clone of https://6313aefd9c7e3baeae932bf5d8418f27f21abd6e@github.com/BrianCurtis-NOAA/ufs-weather-model +INFO:JOB/CLONE_PR_REPO:Running "mkdir -p "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208"" in location "/scratch1/NCEPDEV/nems/Brian.Curtis/test" +INFO:JOB/CLONE_PR_REPO:Finished running: mkdir -p "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208" +DEBUG:JOB/CLONE_PR_REPO:stdout: b'' +DEBUG:JOB/CLONE_PR_REPO:stderr: None +INFO:JOB/CLONE_PR_REPO:Running "git clone -b feature/rt-automation https://6313aefd9c7e3baeae932bf5d8418f27f21abd6e@github.com/BrianCurtis-NOAA/ufs-weather-model" in location "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208" +INFO:JOB/CLONE_PR_REPO:Finished running: git clone -b feature/rt-automation https://6313aefd9c7e3baeae932bf5d8418f27f21abd6e@github.com/BrianCurtis-NOAA/ufs-weather-model +DEBUG:JOB/CLONE_PR_REPO:stdout: b"Cloning into 'ufs-weather-model'...\n" +DEBUG:JOB/CLONE_PR_REPO:stderr: None +INFO:JOB/CLONE_PR_REPO:Running "git submodule update --init --recursive" in location "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model" +INFO:JOB/CLONE_PR_REPO:Finished running: git submodule update --init --recursive +DEBUG:JOB/CLONE_PR_REPO:stdout: b"Submodule 'CICE' (https://github.com/NOAA-EMC/CICE) registered for path 'CICE-interface/CICE'\nSubmodule 'CMEPS' (https://github.com/NOAA-EMC/CMEPS.git) registered for path 'CMEPS-interface/CMEPS'\nSubmodule 'CMakeModules' (https://github.com/NOAA-EMC/CMakeModules) registered for path 'CMakeModules'\nSubmodule 'DATM' (https://github.com/NOAA-EMC/NEMSdatm) registered for path 'DATM'\nSubmodule 'FMS' (https://github.com/NOAA-GFDL/FMS) registered for path 'FMS'\nSubmodule 'FV3' (https://github.com/NOAA-EMC/fv3atm) registered for path 'FV3'\nSubmodule 'MOM6' (https://github.com/NOAA-EMC/MOM6) registered for path 'MOM6-interface/MOM6'\nSubmodule 'NEMS' (https://github.com/NOAA-EMC/NEMS) registered for path 'NEMS'\nSubmodule 'WW3' (https://github.com/NOAA-EMC/WW3) registered for path 'WW3'\nSubmodule 'stochastic_physics' (https://github.com/noaa-psd/stochastic_physics) registered for path 'stochastic_physics'\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/CICE-interface/CICE'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/CMEPS-interface/CMEPS'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/CMakeModules'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/DATM'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FMS'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FV3'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/MOM6-interface/MOM6'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/NEMS'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/WW3'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/stochastic_physics'...\nSubmodule path 'CICE-interface/CICE': checked out 'f773ef3892615da4b4af26b4be3e57c9f29b9343'\nSubmodule 'icepack' (https://github.com/NOAA-EMC/Icepack) registered for path 'CICE-interface/CICE/icepack'\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/CICE-interface/CICE/icepack'...\nSubmodule path 'CICE-interface/CICE/icepack': checked out 'db2a4778970ae340b6bdd62eb03f60cd37a13f75'\nSubmodule path 'CMEPS-interface/CMEPS': checked out '0658dde477b92348bc8608a8c1d20485843bf4a4'\nSubmodule path 'CMakeModules': checked out '18658695a0b87ad6fcf33982b9cb13e6d7373911'\nSubmodule path 'DATM': checked out '1e9ab6ed1763c981dc8e294c737c449644a9d1fe'\nSubmodule path 'FMS': checked out '0707f2c0279a9efd12cdbf0133c1e09435766928'\nSubmodule path 'FV3': checked out '70e55f21b80df17f2c4b8b1a270fddb8d28ff75b'\nSubmodule 'atmos_cubed_sphere' (https://github.com/NOAA-EMC/GFDL_atmos_cubed_sphere) registered for path 'FV3/atmos_cubed_sphere'\nSubmodule 'ccpp/framework' (https://github.com/NCAR/ccpp-framework) registered for path 'FV3/ccpp/framework'\nSubmodule 'ccpp/physics' (https://github.com/NCAR/ccpp-physics) registered for path 'FV3/ccpp/physics'\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FV3/atmos_cubed_sphere'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FV3/ccpp/framework'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FV3/ccpp/physics'...\nSubmodule path 'FV3/atmos_cubed_sphere': checked out '306ff31371e74694e5d9f4a57584295c7122b9ac'\nSubmodule path 'FV3/ccpp/framework': checked out '612dd1aa9ed6f8c08b4c280ba1c992dd5357fc59'\nSubmodule path 'FV3/ccpp/physics': checked out 'd884fb105bc138216f5f213d43ee05b0481a030e'\nSubmodule 'physics/rte-rrtmgp' (https://github.com/earth-system-radiation/rte-rrtmgp) registered for path 'FV3/ccpp/physics/physics/rte-rrtmgp'\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FV3/ccpp/physics/physics/rte-rrtmgp'...\nSubmodule path 'FV3/ccpp/physics/physics/rte-rrtmgp': checked out '33c8a984c17cf41be5d4c2928242e1b4239bfc40'\nSubmodule path 'MOM6-interface/MOM6': checked out 'cdc7690f41fb747df435a07b92dcf3fa02420a6b'\nSubmodule 'pkg/CVMix-src' (https://github.com/CVMix/CVMix-src.git) registered for path 'MOM6-interface/MOM6/pkg/CVMix-src'\nSubmodule 'pkg/GSW-Fortran' (https://github.com/TEOS-10/GSW-Fortran.git) registered for path 'MOM6-interface/MOM6/pkg/GSW-Fortran'\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/MOM6-interface/MOM6/pkg/CVMix-src'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/MOM6-interface/MOM6/pkg/GSW-Fortran'...\nSubmodule path 'MOM6-interface/MOM6/pkg/CVMix-src': checked out '534fc38e759fcb8a2563fa0dc4c0bbf81f758db9'\nSubmodule path 'MOM6-interface/MOM6/pkg/GSW-Fortran': checked out '29e64d652786e1d076a05128c920f394202bfe10'\nSubmodule path 'NEMS': checked out 'b80b5b18805302290f821e960d820e99e0bcd9ef'\nSubmodule path 'WW3': checked out 'a89e2a6339a016522d3a84188756d0a4bb11be87'\nSubmodule path 'stochastic_physics': checked out 'c39bb8a09a196a9dd17ea3fb52152b61ef2881ae'\n" +DEBUG:JOB/CLONE_PR_REPO:stderr: None +DEBUG:JOB/CLONE_PR_REPO:Finished Cloning https://6313aefd9c7e3baeae932bf5d8418f27f21abd6e@github.com/BrianCurtis-NOAA/ufs-weather-model +DEBUG:MAIN:Calling runFunction +INFO:JOB/RUNFUNCTION:Running: "cd tests && /bin/bash --login ./rt.sh -e" in "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model" +CRITICAL:JOB/RUNFUNCTION:STDOUT: b'+ SECONDS=0\n+ hostname\nhfe03\n+ [[ 1 -eq 0 ]]\n+ trap \'{ echo "rt.sh interrupted"; rt_trap ; }\' INT\n+ trap \'{ echo "rt.sh quit"; rt_trap ; }\' QUIT\n+ trap \'{ echo "rt.sh terminated"; rt_trap ; }\' TERM\n+ trap \'{ echo "rt.sh error on line $LINENO"; cleanup ; }\' ERR\n+ trap \'{ echo "rt.sh finished"; cleanup ; }\' EXIT\n+++ dirname ./rt.sh\n++ cd .\n++ pwd -P\n+ readonly PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n+ PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n+ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n++ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/..\n++ pwd\n+ readonly PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model\n+ PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model\n+ readonly LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n++ hostname\n+ echo hfe03 157174\n+ export RT_COMPILER=intel\n+ RT_COMPILER=intel\n+ source detect_machine.sh\n++ export ACCNR=nems\n++ ACCNR=nems\n++ case $(hostname -f) in\n+++ hostname -f\n++ MACHINE_ID=hera\n++ MACHINE_ID=hera\n++ \'[\' hera = orion \']\'\n++ \'[\' hera = hera \']\'\n++ MACHINE_ID=hera.intel\n++ echo \'Machine: \' hera.intel \' Account: \' nems\nMachine: hera.intel Account: nems\n+ source rt_utils.sh\n++ set -eu\n++ [[ ./rt.sh = \\r\\t\\_\\u\\t\\i\\l\\s\\.\\s\\h ]]\n++ UNIT_TEST=false\n++ qsub_id=0\n++ slurm_id=0\n++ bsub_id=0\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc\n++ __ms_function_name=setup__test_function__157174\n++ eval \'setup__test_function__157174() { /bin/true ; }\'\n+++ eval \'__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi\'\n+++ cat\n++ __ms_ksh_test=\n+++ eval \'if ( set | grep setup__test_function__157174 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi \'\n+++ cat\n++ __ms_bash_test=t\n++ [[ ! -z \'\' ]]\n++ [[ ! -z t ]]\n++ __ms_shell=bash\n++ [[ -d /lfs3 ]]\n++ [[ -d /scratch1 ]]\n++ [[ ! -d /scratch ]]\n++ eval module help\n++ module purge\n+++ /apps/lmod/7.7.18/libexec/lmod bash purge\n++ eval \'__LMOD_REF_COUNT_MODULEPATH="/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";\' export \'__LMOD_REF_COUNT_MODULEPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n+++ __LMOD_REF_COUNT_MODULEPATH=\'/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1\'\n+++ export __LMOD_REF_COUNT_MODULEPATH\n+++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n+++ export MODULEPATH\n+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz\n+++ export _ModuleTable001_\n+++ _ModuleTable002_=Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=\n+++ export _ModuleTable002_\n+++ _ModuleTable_Sz_=2\n+++ export _ModuleTable_Sz_\n+++ : -s sh\n++ eval\n++ unset __ms_shell\n++ unset __ms_ksh_test\n++ unset __ms_bash_test\n++ unset setup__test_function__157174\n++ unset __ms_function_name\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = gaea.* ]]\n+ [[ hera.intel = hera.* ]]\n+ module load rocoto\n++ /apps/lmod/7.7.18/libexec/lmod bash load rocoto\n+ eval \'__LMOD_REF_COUNT_LOADEDMODULES="rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT_LOADEDMODULES;\' \'LOADEDMODULES="rocoto/1.3.3";\' export \'LOADEDMODULES;\' \'__LMOD_REF_COUNT_MANPATH="/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";\' export \'__LMOD_REF_COUNT_MANPATH;\' \'MANPATH="/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";\' export \'MANPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'__LMOD_REF_COUNT_PATH="/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1";\' export \'__LMOD_REF_COUNT_PATH;\' \'PATH="/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin";\' export \'PATH;\' \'__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT__LMFILES_;\' \'_LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3";\' export \'_LMFILES_;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n++ __LMOD_REF_COUNT_LOADEDMODULES=rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT_LOADEDMODULES\n++ LOADEDMODULES=rocoto/1.3.3\n++ export LOADEDMODULES\n++ __LMOD_REF_COUNT_MANPATH=\'/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1\'\n++ export __LMOD_REF_COUNT_MANPATH\n++ MANPATH=/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man\n++ export MANPATH\n++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n++ export MODULEPATH\n++ __LMOD_REF_COUNT_PATH=\'/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1\'\n++ export __LMOD_REF_COUNT_PATH\n++ PATH=/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n++ export PATH\n++ __LMOD_REF_COUNT__LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT__LMFILES_\n++ _LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3\n++ export _LMFILES_\n++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv\n++ export _ModuleTable001_\n++ _ModuleTable002_=Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==\n++ export _ModuleTable002_\n++ _ModuleTable_Sz_=2\n++ export _ModuleTable_Sz_\n++ : -s sh\n+ eval\n++ which rocotorun\n+ ROCOTORUN=/apps/rocoto/1.3.3/bin/rocotorun\n++ which rocotostat\n+ ROCOTOSTAT=/apps/rocoto/1.3.3/bin/rocotostat\n++ which rocotocomplete\n+ ROCOTOCOMPLETE=/apps/rocoto/1.3.3/bin/rocotocomplete\n+ ROCOTO_SCHEDULER=slurm\n+ export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ ECFLOW_START=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh\n++ id -u\n+ ECF_PORT=22097\n+ QUEUE=batch\n+ COMPILE_QUEUE=batch\n+ PARTITION=\n+ dprefix=/scratch1/NCEPDEV\n+ DISKNM=/scratch1/NCEPDEV/nems/emc.nemspara/RT\n+ STMP=/scratch1/NCEPDEV/stmp4\n+ PTMP=/scratch1/NCEPDEV/stmp2\n+ SCHEDULER=slurm\n+ cp fv3_conf/fv3_slurm.IN_hera fv3_conf/fv3_slurm.IN\n+ cp fv3_conf/compile_slurm.IN_hera fv3_conf/compile_slurm.IN\n+ mkdir -p /scratch1/NCEPDEV/stmp4/Brian.Curtis\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST\n+ [[ hera.intel = hera.* ]]\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST_INTEL\n+ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ mkdir -p /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ CREATE_BASELINE=false\n+ ROCOTO=false\n+ ECFLOW=false\n+ KEEP_RUNDIR=false\n+ SINGLE_NAME=\n+ TEST_35D=false\n+ TESTS_FILE=rt.conf\n+ getopts :cl:mn:kreh opt\n+ case $opt in\n+ ECFLOW=true\n+ ROCOTO=false\n+ getopts :cl:mn:kreh opt\n+ [[ \'\' != \'\' ]]\n+ [[ rt.conf =~ 35d ]]\n+ [[ hera.intel = hera.* ]]\n+ RTPWD=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL\n+ INPUTDATA_ROOT=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212\n+ INPUTDATA_ROOT_WW3=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212/WW3_input_data_20201220\n+ shift 1\n+ [[ 0 -gt 1 ]]\n+ [[ false == true ]]\n+ COMPILE_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/Compile_hera.intel.log\n+ REGRESSIONTEST_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/RegressionTests_hera.intel.log\n+ date\n+ echo \'Start Regression test\'\n+ echo\n+ source default_vars.sh\n++ [[ hera.intel = wcoss_cray ]]\n++ [[ hera.intel = wcoss_dell_p3 ]]\n++ [[ hera.intel = wcoss2 ]]\n++ [[ hera.intel = orion.* ]]\n++ [[ hera.intel = hera.* ]]\n++ TASKS_dflt=150\n++ TPN_dflt=40\n++ INPES_dflt=3\n++ JNPES_dflt=8\n++ TASKS_thrd=84\n++ TPN_thrd=20\n++ INPES_thrd=3\n++ JNPES_thrd=4\n++ TASKS_stretch=48\n++ TPN_stretch=12\n++ INPES_stretch=2\n++ JNPES_stretch=4\n++ TASKS_strnest=96\n++ TPN_strnest=12\n++ INPES_strnest=2\n++ JNPES_strnest=4\n++ TASKS_cpl_dflt=192\n++ TPN_cpl_dflt=40\n++ INPES_cpl_dflt=3\n++ JNPES_cpl_dflt=8\n++ THRD_cpl_dflt=1\n++ WPG_cpl_dflt=6\n++ MPB_cpl_dflt=\'0 143\'\n++ APB_cpl_dflt=\'0 149\'\n++ OPB_cpl_dflt=\'150 179\'\n++ IPB_cpl_dflt=\'180 191\'\n++ TASKS_cpl_dflt_wwav=204\n++ TPN_cpl_dflt_wwav=40\n++ INPES_cpl_dflt_wwav=3\n++ JNPES_cpl_dflt_wwav=8\n++ THRD_cpl_dflt_wwav=1\n++ WPG_cpl_dflt_wwav=6\n++ MPB_cpl_dflt_wwav=\'0 143\'\n++ APB_cpl_dflt_wwav=\'0 149\'\n++ OPB_cpl_dflt_wwav=\'150 179\'\n++ IPB_cpl_dflt_wwav=\'180 191\'\n++ WPB_cpl_dflt_wwav=\'192 203\'\n++ TASKS_cpl_thrd=120\n++ TPN_cpl_thrd=40\n++ INPES_cpl_thrd=3\n++ JNPES_cpl_thrd=4\n++ THRD_cpl_thrd=2\n++ WPG_cpl_thrd=6\n++ MPB_cpl_thrd=\'0 77\'\n++ APB_cpl_thrd=\'0 77\'\n++ OPB_cpl_thrd=\'78 107\'\n++ IPB_cpl_thrd=\'108 119\'\n++ TASKS_cpl_bmrk=480\n++ TPN_cpl_bmrk=40\n++ INPES_cpl_bmrk=6\n++ JNPES_cpl_bmrk=8\n++ THRD_cpl_bmrk=1\n++ WPG_cpl_bmrk=24\n++ MPB_cpl_bmrk=\'0 287\'\n++ APB_cpl_bmrk=\'0 311\'\n++ OPB_cpl_bmrk=\'312 431\'\n++ IPB_cpl_bmrk=\'432 479\'\n++ TASKS_cpl_wwav=520\n++ TPN_cpl_wwav=40\n++ INPES_cpl_wwav=6\n++ JNPES_cpl_wwav=8\n++ THRD_cpl_wwav=1\n++ WPG_cpl_wwav=24\n++ MPB_cpl_wwav=\'0 287\'\n++ APB_cpl_wwav=\'0 311\'\n++ OPB_cpl_wwav=\'312 431\'\n++ IPB_cpl_wwav=\'432 479\'\n++ WPB_cpl_wwav=\'480 519\'\n++ TASKS_cpl_c192=288\n++ TPN_cpl_c192=40\n++ INPES_cpl_c192=4\n++ JNPES_cpl_c192=8\n++ THRD_cpl_c192=1\n++ WPG_cpl_c192=12\n++ MPB_cpl_c192=\'0 191\'\n++ APB_cpl_c192=\'0 203\'\n++ OPB_cpl_c192=\'204 263\'\n++ IPB_cpl_c192=\'264 287\'\n++ TASKS_cpl_c384=318\n++ TPN_cpl_c384=40\n++ INPES_cpl_c384=3\n++ JNPES_cpl_c384=8\n++ THRD_cpl_c384=1\n++ WPG_cpl_c384=6\n++ MPB_cpl_c384=\'0 143\'\n++ APB_cpl_c384=\'0 149\'\n++ OPB_cpl_c384=\'150 269\'\n++ IPB_cpl_c384=\'270 317\'\n++ TASKS_datm_100=120\n++ TPN_datm_100=40\n++ MPB_datm_100=\'16 77\'\n++ APB_datm_100=\'0 15\'\n++ OPB_datm_100=\'78 107\'\n++ IPB_datm_100=\'108 119\'\n++ TASKS_datm_025=208\n++ TPN_datm_025=40\n++ MPB_datm_025=\'0 39\'\n++ APB_datm_025=\'0 39\'\n++ OPB_datm_025=\'40 159\'\n++ IPB_datm_025=\'160 207\'\n++ [[ intel = gnu ]]\n++ WLCLK_dflt=15\n+ TEST_NR=0\n+ COMPILE_NR=0\n+ COMPILE_PREV_WW3_NR=\n+ rm -f fail_test\n+ LOG_DIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ MAX_BUILDS=10\n+ MAX_JOBS=30\n+ [[ hera.intel = jet.intel ]]\n+ ECFLOW_RUN=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ ECFLOW_SUITE=regtest_157174\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ mkdir -p /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run/regtest_157174\n+ cp head.h tail.h /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ cat\n+ [[ hera.intel = wcoss ]]\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = hera.* ]]\n+ QUEUE=batch\n+ new_compile=false\n+ in_metatask=false\n+ [[ -f rt.conf ]]\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# PROD tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # PROD tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_1\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017 =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_control | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_control ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 1\n+ TEST_NR=001\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/tests/fv3_ccpp_control\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_control_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ \'[\' \'\' \']\'\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ echo endsuite\n+ ecflow_run\n+ [[ 22097 -gt 49151 ]]\n++ hostname\n+ ECF_HOST=hfe03\n+ set +e\n+ ecflow_client --ping --host=hfe03 --port=22097\n[02:03:26 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n+ not_running=1\n+ [[ 1 -eq 1 ]]\n+ echo \'ecflow_server is NOT running on hfe03:22097\'\necflow_server is NOT running on hfe03:22097\n+ sh /scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh -p 22097\n[02:03:27 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\nTue Feb 23 02:03:27 UTC 2021\n\nUser "20597" attempting to start ecf server on "hfe03" using ECF_PORT "22097" and with:\nECF_HOME : "/home/Brian.Curtis/ecflow_server"\nECF_LOG : "hfe03.22097.ecf.log"\nECF_CHECK : "hfe03.22097.check"\nECF_CHECKOLD : "hfe03.22097.check.b"\nECF_OUT : "/dev/null"\n\nclient version is Ecflow version(5.6.0) boost(1.74.0) compiler(gcc 7.5.0) protocol(JSON cereal 1.3.0) Compiled on Nov 26 2020 15:50:45\nChecking if the server is already running on hfe03 and port 22097\n[02:03:28 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n\nBacking up check point and log files\n\nOK starting ecFlow server...\n\nPlacing server into RESTART mode...\n\nTo view server on ecflow_ui - goto Servers/Manage Servers... and enter\nName : \nHost : hfe03\nPort Number : 22097\n\n+ set -e\n+ ECFLOW_RUNNING=true\n+ export ECF_PORT\n+ export ECF_HOST\n+ ecflow_client --load=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run/regtest_157174.def\n+ ecflow_client --begin=regtest_157174\n+ active_tasks=1\n+ [[ 1 -ne 0 ]]\n+ wait 157456\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157555\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157596\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157808\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159001\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159047\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159376\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159862\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 160555\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 161800\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 165751\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 166400\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 166920\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 167617\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 168309\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 169215\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 170154\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 170954\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171046\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171117\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171962\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 172768\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 173594\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 174258\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 175084\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 175455\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 176029\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 176513\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177704\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177822\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177938\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178054\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178212\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178802\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179110\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179380\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179789\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 180067\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 180710\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 182215\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 186727\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 188275\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 190083\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 192026\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 193717\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 195616\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197090\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197206\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197339\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197557\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197712\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 198946\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199319\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199677\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199873\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200062\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200160\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200505\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200706\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 201351\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 201814\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202159\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202337\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202799\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203129\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203469\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203687\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203860\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 204012\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 206202\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208128\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208436\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208811\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 209166\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=0\n+ echo \'ecflow tasks remaining: 0\'\necflow tasks remaining: 0\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 0 -ne 0 ]]\n+ sleep 65\n+ ecflow_client --delete=yes /regtest_157174\n+ sleep 5\n+ set +e\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel/compile_1.log\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel/rt_001_fv3_ccpp_control_prod.log\n+ [[ -e fail_test ]]\n+ echo\n\n+ echo REGRESSION TEST WAS SUCCESSFUL\nREGRESSION TEST WAS SUCCESSFUL\n+ echo\n+ echo REGRESSION TEST WAS SUCCESSFUL\n+ rm -f \'fv3_*.x\' fv3_1.exe modules.fv3_1\n+ [[ false == false ]]\n+ rm -rf /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ date\n++ printf \'%02dh:%02dm:%02ds\\n\' 0 13 46\n+ elapsed_time=00h:13m:46s\n+ echo \'Elapsed time: 00h:13m:46s. Have a nice day!\'\n+ echo \'Elapsed time: 00h:13m:46s. Have a nice day!\'\nElapsed time: 00h:13m:46s. Have a nice day!\n+ echo \'rt.sh finished\'\nrt.sh finished\n+ cleanup\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ [[ true == true ]]\n+ ecflow_stop\n+ [[ true == true ]]\n+ set +e\n++ ecflow_client --get\n++ grep \'^suite\'\n+ SUITES=\n+ echo SUITES=\nSUITES=\n+ \'[\' -z \'\' \']\'\n+ ecflow_client --halt=yes\n+ ecflow_client --check_pt\n+ ecflow_client --terminate=yes\n+ trap 0\n+ exit\n' +CRITICAL:JOB/RUNFUNCTION:STDERR: None +INFO:JOB/RUNFUNCTION:Attempting to run callback: move_rt_logs +INFO:JOB/MOVE_RT_LOGS:Attempting to run: git add tests/RegressionTests_hera.intel.log +INFO:JOB/MOVE_RT_LOGS:Finished command git add tests/RegressionTests_hera.intel.log +DEBUG:JOB/MOVE_RT_LOGS:stdout: b'' +DEBUG:JOB/MOVE_RT_LOGS:stderr: None +INFO:JOB/MOVE_RT_LOGS:Attempting to run: git commit -m "Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log" +INFO:JOB/MOVE_RT_LOGS:Finished command git commit -m "Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log" +DEBUG:JOB/MOVE_RT_LOGS:stdout: b'[feature/rt-automation d93c8db] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log\n 1 file changed, 4 insertions(+), 4 deletions(-)\n' +DEBUG:JOB/MOVE_RT_LOGS:stderr: None +INFO:JOB/MOVE_RT_LOGS:Attempting to run: git pull --no-edit origin feature/rt-automation +INFO:JOB/MOVE_RT_LOGS:Finished command git pull --no-edit origin feature/rt-automation +DEBUG:JOB/MOVE_RT_LOGS:stdout: b'From https://github.com/BrianCurtis-NOAA/ufs-weather-model\n * branch feature/rt-automation -> FETCH_HEAD\nAlready up to date.\n' +DEBUG:JOB/MOVE_RT_LOGS:stderr: None +INFO:JOB/MOVE_RT_LOGS:Attempting to run: sleep 10 +INFO:JOB/MOVE_RT_LOGS:Finished command sleep 10 +DEBUG:JOB/MOVE_RT_LOGS:stdout: b'' +DEBUG:JOB/MOVE_RT_LOGS:stderr: None +INFO:JOB/MOVE_RT_LOGS:Attempting to run: git push origin feature/rt-automation +INFO:JOB/MOVE_RT_LOGS:Finished command git push origin feature/rt-automation +DEBUG:JOB/MOVE_RT_LOGS:stdout: b'To https://github.com/BrianCurtis-NOAA/ufs-weather-model\n 588fe3d..d93c8db feature/rt-automation -> feature/rt-automation\n' +DEBUG:JOB/MOVE_RT_LOGS:stderr: None +INFO:JOB/RUNFUNCTION:Finished callback move_rt_logs +DEBUG:JOB/RUNFUNCTION:stdout: b'+ SECONDS=0\n+ hostname\nhfe03\n+ [[ 1 -eq 0 ]]\n+ trap \'{ echo "rt.sh interrupted"; rt_trap ; }\' INT\n+ trap \'{ echo "rt.sh quit"; rt_trap ; }\' QUIT\n+ trap \'{ echo "rt.sh terminated"; rt_trap ; }\' TERM\n+ trap \'{ echo "rt.sh error on line $LINENO"; cleanup ; }\' ERR\n+ trap \'{ echo "rt.sh finished"; cleanup ; }\' EXIT\n+++ dirname ./rt.sh\n++ cd .\n++ pwd -P\n+ readonly PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n+ PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n+ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n++ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/..\n++ pwd\n+ readonly PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model\n+ PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model\n+ readonly LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n++ hostname\n+ echo hfe03 157174\n+ export RT_COMPILER=intel\n+ RT_COMPILER=intel\n+ source detect_machine.sh\n++ export ACCNR=nems\n++ ACCNR=nems\n++ case $(hostname -f) in\n+++ hostname -f\n++ MACHINE_ID=hera\n++ MACHINE_ID=hera\n++ \'[\' hera = orion \']\'\n++ \'[\' hera = hera \']\'\n++ MACHINE_ID=hera.intel\n++ echo \'Machine: \' hera.intel \' Account: \' nems\nMachine: hera.intel Account: nems\n+ source rt_utils.sh\n++ set -eu\n++ [[ ./rt.sh = \\r\\t\\_\\u\\t\\i\\l\\s\\.\\s\\h ]]\n++ UNIT_TEST=false\n++ qsub_id=0\n++ slurm_id=0\n++ bsub_id=0\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc\n++ __ms_function_name=setup__test_function__157174\n++ eval \'setup__test_function__157174() { /bin/true ; }\'\n+++ eval \'__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi\'\n+++ cat\n++ __ms_ksh_test=\n+++ eval \'if ( set | grep setup__test_function__157174 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi \'\n+++ cat\n++ __ms_bash_test=t\n++ [[ ! -z \'\' ]]\n++ [[ ! -z t ]]\n++ __ms_shell=bash\n++ [[ -d /lfs3 ]]\n++ [[ -d /scratch1 ]]\n++ [[ ! -d /scratch ]]\n++ eval module help\n++ module purge\n+++ /apps/lmod/7.7.18/libexec/lmod bash purge\n++ eval \'__LMOD_REF_COUNT_MODULEPATH="/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";\' export \'__LMOD_REF_COUNT_MODULEPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n+++ __LMOD_REF_COUNT_MODULEPATH=\'/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1\'\n+++ export __LMOD_REF_COUNT_MODULEPATH\n+++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n+++ export MODULEPATH\n+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz\n+++ export _ModuleTable001_\n+++ _ModuleTable002_=Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=\n+++ export _ModuleTable002_\n+++ _ModuleTable_Sz_=2\n+++ export _ModuleTable_Sz_\n+++ : -s sh\n++ eval\n++ unset __ms_shell\n++ unset __ms_ksh_test\n++ unset __ms_bash_test\n++ unset setup__test_function__157174\n++ unset __ms_function_name\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = gaea.* ]]\n+ [[ hera.intel = hera.* ]]\n+ module load rocoto\n++ /apps/lmod/7.7.18/libexec/lmod bash load rocoto\n+ eval \'__LMOD_REF_COUNT_LOADEDMODULES="rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT_LOADEDMODULES;\' \'LOADEDMODULES="rocoto/1.3.3";\' export \'LOADEDMODULES;\' \'__LMOD_REF_COUNT_MANPATH="/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";\' export \'__LMOD_REF_COUNT_MANPATH;\' \'MANPATH="/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";\' export \'MANPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'__LMOD_REF_COUNT_PATH="/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1";\' export \'__LMOD_REF_COUNT_PATH;\' \'PATH="/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin";\' export \'PATH;\' \'__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT__LMFILES_;\' \'_LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3";\' export \'_LMFILES_;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n++ __LMOD_REF_COUNT_LOADEDMODULES=rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT_LOADEDMODULES\n++ LOADEDMODULES=rocoto/1.3.3\n++ export LOADEDMODULES\n++ __LMOD_REF_COUNT_MANPATH=\'/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1\'\n++ export __LMOD_REF_COUNT_MANPATH\n++ MANPATH=/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man\n++ export MANPATH\n++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n++ export MODULEPATH\n++ __LMOD_REF_COUNT_PATH=\'/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1\'\n++ export __LMOD_REF_COUNT_PATH\n++ PATH=/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n++ export PATH\n++ __LMOD_REF_COUNT__LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT__LMFILES_\n++ _LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3\n++ export _LMFILES_\n++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv\n++ export _ModuleTable001_\n++ _ModuleTable002_=Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==\n++ export _ModuleTable002_\n++ _ModuleTable_Sz_=2\n++ export _ModuleTable_Sz_\n++ : -s sh\n+ eval\n++ which rocotorun\n+ ROCOTORUN=/apps/rocoto/1.3.3/bin/rocotorun\n++ which rocotostat\n+ ROCOTOSTAT=/apps/rocoto/1.3.3/bin/rocotostat\n++ which rocotocomplete\n+ ROCOTOCOMPLETE=/apps/rocoto/1.3.3/bin/rocotocomplete\n+ ROCOTO_SCHEDULER=slurm\n+ export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ ECFLOW_START=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh\n++ id -u\n+ ECF_PORT=22097\n+ QUEUE=batch\n+ COMPILE_QUEUE=batch\n+ PARTITION=\n+ dprefix=/scratch1/NCEPDEV\n+ DISKNM=/scratch1/NCEPDEV/nems/emc.nemspara/RT\n+ STMP=/scratch1/NCEPDEV/stmp4\n+ PTMP=/scratch1/NCEPDEV/stmp2\n+ SCHEDULER=slurm\n+ cp fv3_conf/fv3_slurm.IN_hera fv3_conf/fv3_slurm.IN\n+ cp fv3_conf/compile_slurm.IN_hera fv3_conf/compile_slurm.IN\n+ mkdir -p /scratch1/NCEPDEV/stmp4/Brian.Curtis\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST\n+ [[ hera.intel = hera.* ]]\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST_INTEL\n+ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ mkdir -p /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ CREATE_BASELINE=false\n+ ROCOTO=false\n+ ECFLOW=false\n+ KEEP_RUNDIR=false\n+ SINGLE_NAME=\n+ TEST_35D=false\n+ TESTS_FILE=rt.conf\n+ getopts :cl:mn:kreh opt\n+ case $opt in\n+ ECFLOW=true\n+ ROCOTO=false\n+ getopts :cl:mn:kreh opt\n+ [[ \'\' != \'\' ]]\n+ [[ rt.conf =~ 35d ]]\n+ [[ hera.intel = hera.* ]]\n+ RTPWD=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL\n+ INPUTDATA_ROOT=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212\n+ INPUTDATA_ROOT_WW3=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212/WW3_input_data_20201220\n+ shift 1\n+ [[ 0 -gt 1 ]]\n+ [[ false == true ]]\n+ COMPILE_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/Compile_hera.intel.log\n+ REGRESSIONTEST_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/RegressionTests_hera.intel.log\n+ date\n+ echo \'Start Regression test\'\n+ echo\n+ source default_vars.sh\n++ [[ hera.intel = wcoss_cray ]]\n++ [[ hera.intel = wcoss_dell_p3 ]]\n++ [[ hera.intel = wcoss2 ]]\n++ [[ hera.intel = orion.* ]]\n++ [[ hera.intel = hera.* ]]\n++ TASKS_dflt=150\n++ TPN_dflt=40\n++ INPES_dflt=3\n++ JNPES_dflt=8\n++ TASKS_thrd=84\n++ TPN_thrd=20\n++ INPES_thrd=3\n++ JNPES_thrd=4\n++ TASKS_stretch=48\n++ TPN_stretch=12\n++ INPES_stretch=2\n++ JNPES_stretch=4\n++ TASKS_strnest=96\n++ TPN_strnest=12\n++ INPES_strnest=2\n++ JNPES_strnest=4\n++ TASKS_cpl_dflt=192\n++ TPN_cpl_dflt=40\n++ INPES_cpl_dflt=3\n++ JNPES_cpl_dflt=8\n++ THRD_cpl_dflt=1\n++ WPG_cpl_dflt=6\n++ MPB_cpl_dflt=\'0 143\'\n++ APB_cpl_dflt=\'0 149\'\n++ OPB_cpl_dflt=\'150 179\'\n++ IPB_cpl_dflt=\'180 191\'\n++ TASKS_cpl_dflt_wwav=204\n++ TPN_cpl_dflt_wwav=40\n++ INPES_cpl_dflt_wwav=3\n++ JNPES_cpl_dflt_wwav=8\n++ THRD_cpl_dflt_wwav=1\n++ WPG_cpl_dflt_wwav=6\n++ MPB_cpl_dflt_wwav=\'0 143\'\n++ APB_cpl_dflt_wwav=\'0 149\'\n++ OPB_cpl_dflt_wwav=\'150 179\'\n++ IPB_cpl_dflt_wwav=\'180 191\'\n++ WPB_cpl_dflt_wwav=\'192 203\'\n++ TASKS_cpl_thrd=120\n++ TPN_cpl_thrd=40\n++ INPES_cpl_thrd=3\n++ JNPES_cpl_thrd=4\n++ THRD_cpl_thrd=2\n++ WPG_cpl_thrd=6\n++ MPB_cpl_thrd=\'0 77\'\n++ APB_cpl_thrd=\'0 77\'\n++ OPB_cpl_thrd=\'78 107\'\n++ IPB_cpl_thrd=\'108 119\'\n++ TASKS_cpl_bmrk=480\n++ TPN_cpl_bmrk=40\n++ INPES_cpl_bmrk=6\n++ JNPES_cpl_bmrk=8\n++ THRD_cpl_bmrk=1\n++ WPG_cpl_bmrk=24\n++ MPB_cpl_bmrk=\'0 287\'\n++ APB_cpl_bmrk=\'0 311\'\n++ OPB_cpl_bmrk=\'312 431\'\n++ IPB_cpl_bmrk=\'432 479\'\n++ TASKS_cpl_wwav=520\n++ TPN_cpl_wwav=40\n++ INPES_cpl_wwav=6\n++ JNPES_cpl_wwav=8\n++ THRD_cpl_wwav=1\n++ WPG_cpl_wwav=24\n++ MPB_cpl_wwav=\'0 287\'\n++ APB_cpl_wwav=\'0 311\'\n++ OPB_cpl_wwav=\'312 431\'\n++ IPB_cpl_wwav=\'432 479\'\n++ WPB_cpl_wwav=\'480 519\'\n++ TASKS_cpl_c192=288\n++ TPN_cpl_c192=40\n++ INPES_cpl_c192=4\n++ JNPES_cpl_c192=8\n++ THRD_cpl_c192=1\n++ WPG_cpl_c192=12\n++ MPB_cpl_c192=\'0 191\'\n++ APB_cpl_c192=\'0 203\'\n++ OPB_cpl_c192=\'204 263\'\n++ IPB_cpl_c192=\'264 287\'\n++ TASKS_cpl_c384=318\n++ TPN_cpl_c384=40\n++ INPES_cpl_c384=3\n++ JNPES_cpl_c384=8\n++ THRD_cpl_c384=1\n++ WPG_cpl_c384=6\n++ MPB_cpl_c384=\'0 143\'\n++ APB_cpl_c384=\'0 149\'\n++ OPB_cpl_c384=\'150 269\'\n++ IPB_cpl_c384=\'270 317\'\n++ TASKS_datm_100=120\n++ TPN_datm_100=40\n++ MPB_datm_100=\'16 77\'\n++ APB_datm_100=\'0 15\'\n++ OPB_datm_100=\'78 107\'\n++ IPB_datm_100=\'108 119\'\n++ TASKS_datm_025=208\n++ TPN_datm_025=40\n++ MPB_datm_025=\'0 39\'\n++ APB_datm_025=\'0 39\'\n++ OPB_datm_025=\'40 159\'\n++ IPB_datm_025=\'160 207\'\n++ [[ intel = gnu ]]\n++ WLCLK_dflt=15\n+ TEST_NR=0\n+ COMPILE_NR=0\n+ COMPILE_PREV_WW3_NR=\n+ rm -f fail_test\n+ LOG_DIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ MAX_BUILDS=10\n+ MAX_JOBS=30\n+ [[ hera.intel = jet.intel ]]\n+ ECFLOW_RUN=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ ECFLOW_SUITE=regtest_157174\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ mkdir -p /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run/regtest_157174\n+ cp head.h tail.h /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ cat\n+ [[ hera.intel = wcoss ]]\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = hera.* ]]\n+ QUEUE=batch\n+ new_compile=false\n+ in_metatask=false\n+ [[ -f rt.conf ]]\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# PROD tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # PROD tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_1\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017 =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_control | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_control ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 1\n+ TEST_NR=001\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/tests/fv3_ccpp_control\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_control_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ \'[\' \'\' \']\'\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ echo endsuite\n+ ecflow_run\n+ [[ 22097 -gt 49151 ]]\n++ hostname\n+ ECF_HOST=hfe03\n+ set +e\n+ ecflow_client --ping --host=hfe03 --port=22097\n[02:03:26 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n+ not_running=1\n+ [[ 1 -eq 1 ]]\n+ echo \'ecflow_server is NOT running on hfe03:22097\'\necflow_server is NOT running on hfe03:22097\n+ sh /scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh -p 22097\n[02:03:27 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\nTue Feb 23 02:03:27 UTC 2021\n\nUser "20597" attempting to start ecf server on "hfe03" using ECF_PORT "22097" and with:\nECF_HOME : "/home/Brian.Curtis/ecflow_server"\nECF_LOG : "hfe03.22097.ecf.log"\nECF_CHECK : "hfe03.22097.check"\nECF_CHECKOLD : "hfe03.22097.check.b"\nECF_OUT : "/dev/null"\n\nclient version is Ecflow version(5.6.0) boost(1.74.0) compiler(gcc 7.5.0) protocol(JSON cereal 1.3.0) Compiled on Nov 26 2020 15:50:45\nChecking if the server is already running on hfe03 and port 22097\n[02:03:28 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n\nBacking up check point and log files\n\nOK starting ecFlow server...\n\nPlacing server into RESTART mode...\n\nTo view server on ecflow_ui - goto Servers/Manage Servers... and enter\nName : \nHost : hfe03\nPort Number : 22097\n\n+ set -e\n+ ECFLOW_RUNNING=true\n+ export ECF_PORT\n+ export ECF_HOST\n+ ecflow_client --load=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run/regtest_157174.def\n+ ecflow_client --begin=regtest_157174\n+ active_tasks=1\n+ [[ 1 -ne 0 ]]\n+ wait 157456\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157555\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157596\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157808\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159001\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159047\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159376\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159862\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 160555\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 161800\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 165751\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 166400\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 166920\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 167617\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 168309\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 169215\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 170154\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 170954\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171046\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171117\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171962\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 172768\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 173594\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 174258\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 175084\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 175455\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 176029\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 176513\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177704\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177822\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177938\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178054\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178212\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178802\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179110\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179380\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179789\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 180067\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 180710\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 182215\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 186727\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 188275\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 190083\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 192026\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 193717\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 195616\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197090\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197206\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197339\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197557\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197712\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 198946\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199319\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199677\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199873\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200062\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200160\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200505\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200706\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 201351\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 201814\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202159\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202337\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202799\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203129\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203469\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203687\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203860\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 204012\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 206202\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208128\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208436\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208811\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 209166\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=0\n+ echo \'ecflow tasks remaining: 0\'\necflow tasks remaining: 0\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 0 -ne 0 ]]\n+ sleep 65\n+ ecflow_client --delete=yes /regtest_157174\n+ sleep 5\n+ set +e\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel/compile_1.log\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel/rt_001_fv3_ccpp_control_prod.log\n+ [[ -e fail_test ]]\n+ echo\n\n+ echo REGRESSION TEST WAS SUCCESSFUL\nREGRESSION TEST WAS SUCCESSFUL\n+ echo\n+ echo REGRESSION TEST WAS SUCCESSFUL\n+ rm -f \'fv3_*.x\' fv3_1.exe modules.fv3_1\n+ [[ false == false ]]\n+ rm -rf /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ date\n++ printf \'%02dh:%02dm:%02ds\\n\' 0 13 46\n+ elapsed_time=00h:13m:46s\n+ echo \'Elapsed time: 00h:13m:46s. Have a nice day!\'\n+ echo \'Elapsed time: 00h:13m:46s. Have a nice day!\'\nElapsed time: 00h:13m:46s. Have a nice day!\n+ echo \'rt.sh finished\'\nrt.sh finished\n+ cleanup\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ [[ true == true ]]\n+ ecflow_stop\n+ [[ true == true ]]\n+ set +e\n++ ecflow_client --get\n++ grep \'^suite\'\n+ SUITES=\n+ echo SUITES=\nSUITES=\n+ \'[\' -z \'\' \']\'\n+ ecflow_client --halt=yes\n+ ecflow_client --check_pt\n+ ecflow_client --terminate=yes\n+ trap 0\n+ exit\n' +DEBUG:JOB/RUNFUNCTION:stderr: None +DEBUG:MAIN:Calling push_rtauto_log +INFO:JOB/PUSH_RTAUTO_LOG:Running "cp /scratch1/NCEPDEV/nems/Brian.Curtis/git2/BrianCurtis-NOAA/ufs-weather-model-rt/tests/auto/rt_auto_20210223020202.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/auto/" in location "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model" From 998f87dbc34dc4542f1586b89d57271527d9db2a Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 23 Feb 2021 03:04:21 +0000 Subject: [PATCH 099/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 728c6cf79c..50f8aaea99 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Feb 23 02:03:24 UTC 2021 +Tue Feb 23 02:47:31 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_13578/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,5 +71,5 @@ Test 001 fv3_ccpp_control PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 23 02:17:10 UTC 2021 -Elapsed time: 00h:13m:46s. Have a nice day! +Tue Feb 23 03:04:19 UTC 2021 +Elapsed time: 00h:16m:49s. Have a nice day! From 234021106e6f7fda3d64bf52fc34ed8fdc982920 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 23 Feb 2021 03:12:53 +0000 Subject: [PATCH 100/117] * log level to info by default, never save debug to repo * push rt_auto_.log to repo * removes pr repo directory * brings back devel rt.conf --- tests/auto/rt_auto.py | 68 ++++++++++++++-- tests/rt.conf | 185 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 246 insertions(+), 7 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index daf7424c32..a97a056cfb 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -146,6 +146,52 @@ def add_pr_label(self): self.logger.info(f'Adding Label: {self.preq_dict["label"]}') self.preq_dict['preq'].add_to_labels(self.preq_dict['label']) + def push_rtauto_log(self, log_path, log_filename): + logger = logging.getLogger('JOB/PUSH_RTAUTO_LOG') + push_rtauto_commands = [ + [f'cp {log_path}/{log_filename} {self.pr_repo_loc}/tests/auto/', self.pr_repo_loc], + [f'git add tests/auto/{log_filename}', self.pr_repo_loc], + [f'git commit -m "Auto: adding rt_auto.log"', self.pr_repo_loc], + [f'git pull --no-edit origin {self.branch}', self.pr_repo_loc], + ['sleep 10', self.pr_repo_loc], + [f'git push origin {self.branch}', self.pr_repo_loc] + ] + + for command, in_cwd in push_rtauto_commands: + logger.info(f'Running "{command}" in location "{in_cwd}"') + try: + output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + out, err = output.communicate() + except Exception as e: + self.add_pr_label() + logger.critical(e) + logger.critical(f'STDOUT: {out}') + logger.critical(f'STDERR: {err}') + assert(e) + else: + logger.info(f'Finished running: {command}') + logger.debug(f'stdout: {out}') + logger.debug(f'stderr: {err}') + + def remove_pr_dir(self): + logger = logging.getLogger('JOB/REMOVE_PR_DIR') + pr_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}' + rm_command = f'rm -rf {pr_dir_str}' + logger.info(f'Running "{rm_command}"') + try: + output = subprocess.Popen(rm_command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + out, err = output.communicate() + except Exception as e: + logger.warning('Removal of directory at end failed.') + logger.warning(e) + logger.warning(f'STDOUT: {out}') + logger.warning(f'STDERR: {err}') + assert(e) + else: + logger.info(f'Finished running: {rm_command}') + logger.debug(f'stdout: {out}') + logger.debug(f'stderr: {err}') + def clone_pr_repo(self): ''' clone the GitHub pull request repo, via command line ''' logger = logging.getLogger('JOB/CLONE_PR_REPO') @@ -153,7 +199,7 @@ def clone_pr_repo(self): self.branch = self.preq_dict['preq'].head.ref git_url = self.preq_dict['preq'].head.repo.html_url.split('//') git_url = f'{git_url[0]}//{self.ghinterface_obj.GHACCESSTOKEN}@{git_url[1]}' - logger.info(f'Starting clone of {git_url}') + logger.debug(f'Starting clone of {git_url}') repo_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}/{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' create_repo_commands = [ @@ -163,7 +209,7 @@ def clone_pr_repo(self): ] for command, in_cwd in create_repo_commands: - logger.info(f'Running "{command}" in location "{in_cwd}"') + logger.debug(f'Running "{command}" in location "{in_cwd}"') try: output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out, err = output.communicate() @@ -174,7 +220,7 @@ def clone_pr_repo(self): logger.critical(f'STDERR: {err}') assert(e) else: - logger.info(f'Finished running: {command}') + logger.debug(f'Finished running: {command}') logger.debug(f'stdout: {out}') logger.debug(f'stderr: {err}') @@ -198,6 +244,7 @@ def runFunction(self): else: logger.critical(f'STDOUT: {out}') logger.critical(f'STDERR: {err}') + logger.debug(output.returncode) if output.returncode != 0: self.add_pr_label() logger.critical(f'{self.preq_dict["action"]["command"]} Failed') @@ -211,6 +258,7 @@ def runFunction(self): self.add_pr_label() logger.critical(f'Callback function {self.preq_dict["action"]["callback_fnc"]} failed with "{e}"') goodexit = False + assert(e) else: logger.info(f'Finished callback {self.preq_dict["action"]["callback_fnc"]}') logger.debug(f'stdout: {out}') @@ -253,7 +301,9 @@ def move_rt_logs(self): def main(): # handle logging - logging.basicConfig(filename='rt_auto.log', filemode='w', level=logging.DEBUG) + log_path = os.getcwd() + log_filename = f'rt_auto_{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' + logging.basicConfig(filename=log_filename, filemode='w', level=logging.INFO) logger = logging.getLogger('MAIN') logger.info('Starting Script') # handle input args @@ -278,12 +328,16 @@ def main(): for job in jobs: logger.info(f'Starting Job: {job}') try: - logger.debug('Calling remove_pr_label') + logger.info('Calling remove_pr_label') job.remove_pr_label() - logger.debug('Calling clone_pr_repo') + logger.info('Calling clone_pr_repo') job.clone_pr_repo() - logger.debug('Calling runFunction') + logger.info('Calling runFunction') job.runFunction() + logger.info('Calling push_rtauto_log') + job.push_rtauto_log(log_path, log_filename) + logger.info('Calling remove_pr_dir') + job.remove_pr_dir() except Exception as e: job.add_pr_label() logger.critical(e) diff --git a/tests/rt.conf b/tests/rt.conf index f9d44dbc8e..2dd89c69e9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -5,3 +5,188 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_ccpp_control | | fv3 | +RUN | fv3_ccpp_decomp | - jet.intel | | +RUN | fv3_ccpp_2threads | | | +RUN | fv3_ccpp_restart | | | fv3_ccpp_control +RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | +RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | +RUN | fv3_ccpp_stochy | | fv3 | +RUN | fv3_ccpp_ca | | fv3 | +RUN | fv3_ccpp_lndp | | fv3 | +# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it +RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_lheatstrg | | fv3 | + +# WW3 not working on Cheyenne in the past, need to check if it works now +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +RUN | fv3_ccpp_multigases | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +RUN | fv3_ccpp_control_32bit | | fv3 | +RUN | fv3_ccpp_stretched | | fv3 | +RUN | fv3_ccpp_stretched_nest | | fv3 | + +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | +RUN | fv3_ccpp_regional_control | | fv3 | +RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control +RUN | fv3_ccpp_regional_quilt | | fv3 | +RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | +#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | +#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | +#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +RUN | fv3_ccpp_gfdlmp | | fv3 | +RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | +RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +#RUN | fv3_ccpp_csawmgshoc | | fv3 | +#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | +RUN | fv3_ccpp_csawmg | | fv3 | +RUN | fv3_ccpp_satmedmf | | fv3 | +RUN | fv3_ccpp_satmedmfq | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | +RUN | fv3_ccpp_cpt | | fv3 | +RUN | fv3_ccpp_gsd | | fv3 | +# These two tests crash with NaNs on jet.intel +RUN | fv3_ccpp_rap | - jet.intel | fv3 | +RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | +RUN | fv3_ccpp_thompson | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | | fv3 | +# This test crashes with NaNs on jet.intel +RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 +RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16 | | fv3 | +RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 +RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | + +COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | +# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests +RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | +RUN | fv3_ccpp_gocart_clm | | fv3 | +RUN | fv3_ccpp_gfs_v16_flake | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | + +################################################################################################################################################################################### +# DEBUG tests # +################################################################################################################################################################################### + +# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) +# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 +COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_debug | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | + +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_regional_control_debug | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | | fv3 | +RUN | fv3_ccpp_gsd_debug | | fv3 | +RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | +RUN | fv3_ccpp_thompson_debug | | fv3 | +RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | +RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 | +RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | +#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | +RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | + +################################################################################################################################################################################### +# CPLD tests # +################################################################################################################################################################################### + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | cpld_control | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control +RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac + +RUN | cpld_2threads | - wcoss_cray jet.intel | | +RUN | cpld_decomp | - wcoss_cray jet.intel | | +RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | +RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | + +#12h/36h/48h restart tests +RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 +RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 + +RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 +RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 + +RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark +RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac + +#6h/6h/12h restart test +# test fails on gaea with esmfpio error +RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | + +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | +RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | + +################################################################################################################################################################################### +# Data Atmosphere tests # +################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr +RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | + +RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | + +RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | + +COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | +RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | From 3a276e1bf6ab02c13605deb369063254db3de1ba Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 23 Feb 2021 04:39:14 +0000 Subject: [PATCH 101/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 4610 +++++++++++++++++++++++++- 1 file changed, 4602 insertions(+), 8 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 50f8aaea99..3b402aa9a0 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,10 +1,231 @@ -Tue Feb 23 02:47:31 UTC 2021 +Tue Feb 23 03:19:42 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_13578/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmprad_prod +Checking test 017 fv3_ccpp_gfdlmprad results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 017 fv3_ccpp_gfdlmprad PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 018 fv3_ccpp_gfdlmprad_atmwav PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_wrtGauss_nemsio_c768_prod +Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf006.nemsio .........OK + Comparing dynf006.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing out_grd.glo_10m .........OK + Comparing out_grd.ant_9km .........OK + Comparing out_grd.aoc_9km .........OK +Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_multigases_prod +Checking test 020 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 020 fv3_ccpp_multigases PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_control_32bit_prod +Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -67,9 +288,4382 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_ccpp_control PASS +Test 021 fv3_ccpp_control_32bit PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_stretched_prod +Checking test 022 fv3_ccpp_stretched results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 022 fv3_ccpp_stretched PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_stretched_nest_prod +Checking test 023 fv3_ccpp_stretched_nest results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.nest02.tile7.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 023 fv3_ccpp_stretched_nest PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_regional_control_prod +Checking test 024 fv3_ccpp_regional_control results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 024 fv3_ccpp_regional_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_regional_restart_prod +Checking test 025 fv3_ccpp_regional_restart results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK +Test 025 fv3_ccpp_regional_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_regional_quilt_prod +Checking test 026 fv3_ccpp_regional_quilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 026 fv3_ccpp_regional_quilt PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 028 fv3_ccpp_gfdlmp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 029 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 031 fv3_ccpp_csawmg PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 032 fv3_ccpp_satmedmf PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 033 fv3_ccpp_satmedmfq PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 034 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 036 fv3_ccpp_cpt PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 037 fv3_ccpp_gsd PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_rap_prod +Checking test 038 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 038 fv3_ccpp_rap PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_hrrr_prod +Checking test 039 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 039 fv3_ccpp_hrrr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_thompson_prod +Checking test 040 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 040 fv3_ccpp_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_thompson_no_aero_prod +Checking test 041 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 041 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_rrfs_v1beta_prod +Checking test 042 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 042 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v15p2_prod +Checking test 043 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 043 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_prod +Checking test 044 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 044 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_restart_prod +Checking test 045 fv3_ccpp_gfs_v16_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_stochy_prod +Checking test 046 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfsv16_csawmg_prod +Checking test 050 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 051 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gocart_clm_prod +Checking test 052 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 052 fv3_ccpp_gocart_clm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_flake_prod +Checking test 053 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 053 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 058 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 059 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_regional_control_debug_prod +Checking test 062 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 062 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_control_debug_prod +Checking test 063 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 063 fv3_ccpp_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_stretched_nest_debug_prod +Checking test 064 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 064 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gsd_debug_prod +Checking test 065 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 065 fv3_ccpp_gsd_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 066 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_thompson_debug_prod +Checking test 067 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 067 fv3_ccpp_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 068 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 069 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_control_prod +Checking test 073 cpld_control results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 073 cpld_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_prod +Checking test 074 cpld_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 074 cpld_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_controlfrac_prod +Checking test 075 cpld_controlfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 075 cpld_controlfrac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restartfrac_prod +Checking test 076 cpld_restartfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 076 cpld_restartfrac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_2threads_prod +Checking test 077 cpld_2threads results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 077 cpld_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_decomp_prod +Checking test 078 cpld_decomp results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 078 cpld_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_satmedmf_prod +Checking test 079 cpld_satmedmf results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 079 cpld_satmedmf PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_ca_prod +Checking test 080 cpld_ca results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 080 cpld_ca PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_control_c192_prod +Checking test 081 cpld_control_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 081 cpld_control_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_c192_prod +Checking test 082 cpld_restart_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 082 cpld_restart_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_controlfrac_c192_prod +Checking test 083 cpld_controlfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 083 cpld_controlfrac_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restartfrac_c192_prod +Checking test 084 cpld_restartfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 084 cpld_restartfrac_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_control_c384_prod +Checking test 085 cpld_control_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 085 cpld_control_c384 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_c384_prod +Checking test 086 cpld_restart_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 086 cpld_restart_c384 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_controlfrac_c384_prod +Checking test 087 cpld_controlfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 087 cpld_controlfrac_c384 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restartfrac_c384_prod +Checking test 088 cpld_restartfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 088 cpld_restartfrac_c384 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmark_prod +Checking test 089 cpld_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 089 cpld_bmark PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_bmark_prod +Checking test 090 cpld_restart_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 090 cpld_restart_bmark PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmarkfrac_prod +Checking test 091 cpld_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 091 cpld_bmarkfrac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_bmarkfrac_prod +Checking test 092 cpld_restart_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 092 cpld_restart_bmarkfrac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmarkfrac_v16_prod +Checking test 093 cpld_bmarkfrac_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 093 cpld_bmarkfrac_v16 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_bmarkfrac_v16_prod +Checking test 094 cpld_restart_bmarkfrac_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 094 cpld_restart_bmarkfrac_v16 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmark_wave_prod +Checking test 095 cpld_bmark_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 095 cpld_bmark_wave PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmarkfrac_wave_prod +Checking test 096 cpld_bmarkfrac_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 096 cpld_bmarkfrac_wave PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmarkfrac_wave_v16_prod +Checking test 097 cpld_bmarkfrac_wave_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 097 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_control_wave_prod +Checking test 098 cpld_control_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 098 cpld_control_wave PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_debug_prod +Checking test 099 cpld_debug results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 099 cpld_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_debugfrac_prod +Checking test 100 cpld_debugfrac results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 100 cpld_debugfrac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_control_cfsr +Checking test 101 datm_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 101 datm_control_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_restart_cfsr +Checking test 102 datm_restart_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 102 datm_restart_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_control_gefs +Checking test 103 datm_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 103 datm_control_gefs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_bulk_cfsr +Checking test 104 datm_bulk_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 104 datm_bulk_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_bulk_gefs +Checking test 105 datm_bulk_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 105 datm_bulk_gefs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_mx025_cfsr +Checking test 106 datm_mx025_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 106 datm_mx025_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_mx025_gefs +Checking test 107 datm_mx025_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 107 datm_mx025_gefs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_debug_cfsr +Checking test 108 datm_debug_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-01-21600.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK +Test 108 datm_debug_cfsr PASS +FAILED TESTS: +Test fv3_ccpp_2threads 003 failed in run_test failed +Test fv3_ccpp_control 001 failed in run_test failed +Test fv3_ccpp_wrtGauss_netcdf_esmf 006 failed in run_test failed +Test fv3_ccpp_wrtGauss_netcdf_parallel 008 failed in run_test failed +Test fv3_ccpp_decomp 002 failed in run_test failed +Test fv3_ccpp_wrtGauss_netcdf 007 failed in run_test failed +Test fv3_ccpp_wrtGlatlon_netcdf 009 failed in run_test failed +Test fv3_ccpp_wrtGauss_nemsio 010 failed in run_test failed +Test fv3_ccpp_wrtGauss_nemsio_c192 011 failed in run_test failed +Test fv3_ccpp_stochy 012 failed in run_test failed +Test fv3_ccpp_ca 013 failed in run_test failed +Test fv3_ccpp_lndp 014 failed in run_test failed +Test fv3_ccpp_lheatstrg 016 failed in run_test failed -REGRESSION TEST WAS SUCCESSFUL -Tue Feb 23 03:04:19 UTC 2021 -Elapsed time: 00h:16m:49s. Have a nice day! +REGRESSION TEST FAILED +Tue Feb 23 04:39:14 UTC 2021 +Elapsed time: 01h:19m:32s. Have a nice day! From 6af87be275065ea3327419fc034bf630f73688ef Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 23 Feb 2021 04:39:27 +0000 Subject: [PATCH 102/117] Auto: adding rt_auto.log --- tests/auto/rt_auto_20210223031812.log | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/auto/rt_auto_20210223031812.log diff --git a/tests/auto/rt_auto_20210223031812.log b/tests/auto/rt_auto_20210223031812.log new file mode 100644 index 0000000000..438012822f --- /dev/null +++ b/tests/auto/rt_auto_20210223031812.log @@ -0,0 +1,28 @@ +INFO:MAIN:Starting Script +INFO:MAIN:Parsing input args +INFO:MAIN:Calling input_data(). +INFO:MAIN:Setting up GitHub interface. +INFO:MAIN:Getting all pull requests, labels and actions applicable to this machine. +INFO:MAIN:Adding all jobs to an object list and running them. +INFO:MAIN:Starting Job: <__main__.Job object at 0x7f843d0dac70> +INFO:MAIN:Calling remove_pr_label +INFO:JOB:Removing Label: Label(name="Auto-RT-hera") +INFO:MAIN:Calling clone_pr_repo +INFO:MAIN:Calling runFunction +INFO:JOB/RUNFUNCTION:Running: "cd tests && /bin/bash --login ./rt.sh -e" in "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model" +CRITICAL:JOB/RUNFUNCTION:STDOUT: b'+ SECONDS=0\n+ hostname\nhfe03\n+ [[ 1 -eq 0 ]]\n+ trap \'{ echo "rt.sh interrupted"; rt_trap ; }\' INT\n+ trap \'{ echo "rt.sh quit"; rt_trap ; }\' QUIT\n+ trap \'{ echo "rt.sh terminated"; rt_trap ; }\' TERM\n+ trap \'{ echo "rt.sh error on line $LINENO"; cleanup ; }\' ERR\n+ trap \'{ echo "rt.sh finished"; cleanup ; }\' EXIT\n+++ dirname ./rt.sh\n++ cd .\n++ pwd -P\n+ readonly PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests\n+ PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests\n+ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests\n++ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/..\n++ pwd\n+ readonly PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model\n+ PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model\n+ readonly LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/lock\n+ LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/lock\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/lock\n++ hostname\n+ echo hfe03 122270\n+ export RT_COMPILER=intel\n+ RT_COMPILER=intel\n+ source detect_machine.sh\n++ export ACCNR=nems\n++ ACCNR=nems\n++ case $(hostname -f) in\n+++ hostname -f\n++ MACHINE_ID=hera\n++ MACHINE_ID=hera\n++ \'[\' hera = orion \']\'\n++ \'[\' hera = hera \']\'\n++ MACHINE_ID=hera.intel\n++ echo \'Machine: \' hera.intel \' Account: \' nems\nMachine: hera.intel Account: nems\n+ source rt_utils.sh\n++ set -eu\n++ [[ ./rt.sh = \\r\\t\\_\\u\\t\\i\\l\\s\\.\\s\\h ]]\n++ UNIT_TEST=false\n++ qsub_id=0\n++ slurm_id=0\n++ bsub_id=0\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc\n++ __ms_function_name=setup__test_function__122270\n++ eval \'setup__test_function__122270() { /bin/true ; }\'\n+++ eval \'__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi\'\n+++ cat\n++ __ms_ksh_test=\n+++ eval \'if ( set | grep setup__test_function__122270 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi \'\n+++ cat\n++ __ms_bash_test=t\n++ [[ ! -z \'\' ]]\n++ [[ ! -z t ]]\n++ __ms_shell=bash\n++ [[ -d /lfs3 ]]\n++ [[ -d /scratch1 ]]\n++ [[ ! -d /scratch ]]\n++ eval module help\n++ module purge\n+++ /apps/lmod/7.7.18/libexec/lmod bash purge\n++ eval \'__LMOD_REF_COUNT_MODULEPATH="/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";\' export \'__LMOD_REF_COUNT_MODULEPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n+++ __LMOD_REF_COUNT_MODULEPATH=\'/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1\'\n+++ export __LMOD_REF_COUNT_MODULEPATH\n+++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n+++ export MODULEPATH\n+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz\n+++ export _ModuleTable001_\n+++ _ModuleTable002_=Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=\n+++ export _ModuleTable002_\n+++ _ModuleTable_Sz_=2\n+++ export _ModuleTable_Sz_\n+++ : -s sh\n++ eval\n++ unset __ms_shell\n++ unset __ms_ksh_test\n++ unset __ms_bash_test\n++ unset setup__test_function__122270\n++ unset __ms_function_name\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = gaea.* ]]\n+ [[ hera.intel = hera.* ]]\n+ module load rocoto\n++ /apps/lmod/7.7.18/libexec/lmod bash load rocoto\n+ eval \'__LMOD_REF_COUNT_LOADEDMODULES="rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT_LOADEDMODULES;\' \'LOADEDMODULES="rocoto/1.3.3";\' export \'LOADEDMODULES;\' \'__LMOD_REF_COUNT_MANPATH="/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";\' export \'__LMOD_REF_COUNT_MANPATH;\' \'MANPATH="/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";\' export \'MANPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'__LMOD_REF_COUNT_PATH="/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1";\' export \'__LMOD_REF_COUNT_PATH;\' \'PATH="/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin";\' export \'PATH;\' \'__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT__LMFILES_;\' \'_LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3";\' export \'_LMFILES_;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n++ __LMOD_REF_COUNT_LOADEDMODULES=rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT_LOADEDMODULES\n++ LOADEDMODULES=rocoto/1.3.3\n++ export LOADEDMODULES\n++ __LMOD_REF_COUNT_MANPATH=\'/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1\'\n++ export __LMOD_REF_COUNT_MANPATH\n++ MANPATH=/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man\n++ export MANPATH\n++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n++ export MODULEPATH\n++ __LMOD_REF_COUNT_PATH=\'/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1\'\n++ export __LMOD_REF_COUNT_PATH\n++ PATH=/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n++ export PATH\n++ __LMOD_REF_COUNT__LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT__LMFILES_\n++ _LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3\n++ export _LMFILES_\n++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv\n++ export _ModuleTable001_\n++ _ModuleTable002_=Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==\n++ export _ModuleTable002_\n++ _ModuleTable_Sz_=2\n++ export _ModuleTable_Sz_\n++ : -s sh\n+ eval\n++ which rocotorun\n+ ROCOTORUN=/apps/rocoto/1.3.3/bin/rocotorun\n++ which rocotostat\n+ ROCOTOSTAT=/apps/rocoto/1.3.3/bin/rocotostat\n++ which rocotocomplete\n+ ROCOTOCOMPLETE=/apps/rocoto/1.3.3/bin/rocotocomplete\n+ ROCOTO_SCHEDULER=slurm\n+ export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ ECFLOW_START=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh\n++ id -u\n+ ECF_PORT=22097\n+ QUEUE=batch\n+ COMPILE_QUEUE=batch\n+ PARTITION=\n+ dprefix=/scratch1/NCEPDEV\n+ DISKNM=/scratch1/NCEPDEV/nems/emc.nemspara/RT\n+ STMP=/scratch1/NCEPDEV/stmp4\n+ PTMP=/scratch1/NCEPDEV/stmp2\n+ SCHEDULER=slurm\n+ cp fv3_conf/fv3_slurm.IN_hera fv3_conf/fv3_slurm.IN\n+ cp fv3_conf/compile_slurm.IN_hera fv3_conf/compile_slurm.IN\n+ mkdir -p /scratch1/NCEPDEV/stmp4/Brian.Curtis\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST\n+ [[ hera.intel = hera.* ]]\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST_INTEL\n+ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270\n+ mkdir -p /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270\n+ CREATE_BASELINE=false\n+ ROCOTO=false\n+ ECFLOW=false\n+ KEEP_RUNDIR=false\n+ SINGLE_NAME=\n+ TEST_35D=false\n+ TESTS_FILE=rt.conf\n+ getopts :cl:mn:kreh opt\n+ case $opt in\n+ ECFLOW=true\n+ ROCOTO=false\n+ getopts :cl:mn:kreh opt\n+ [[ \'\' != \'\' ]]\n+ [[ rt.conf =~ 35d ]]\n+ [[ hera.intel = hera.* ]]\n+ RTPWD=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL\n+ INPUTDATA_ROOT=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212\n+ INPUTDATA_ROOT_WW3=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212/WW3_input_data_20201220\n+ shift 1\n+ [[ 0 -gt 1 ]]\n+ [[ false == true ]]\n+ COMPILE_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/Compile_hera.intel.log\n+ REGRESSIONTEST_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/RegressionTests_hera.intel.log\n+ date\n+ echo \'Start Regression test\'\n+ echo\n+ source default_vars.sh\n++ [[ hera.intel = wcoss_cray ]]\n++ [[ hera.intel = wcoss_dell_p3 ]]\n++ [[ hera.intel = wcoss2 ]]\n++ [[ hera.intel = orion.* ]]\n++ [[ hera.intel = hera.* ]]\n++ TASKS_dflt=150\n++ TPN_dflt=40\n++ INPES_dflt=3\n++ JNPES_dflt=8\n++ TASKS_thrd=84\n++ TPN_thrd=20\n++ INPES_thrd=3\n++ JNPES_thrd=4\n++ TASKS_stretch=48\n++ TPN_stretch=12\n++ INPES_stretch=2\n++ JNPES_stretch=4\n++ TASKS_strnest=96\n++ TPN_strnest=12\n++ INPES_strnest=2\n++ JNPES_strnest=4\n++ TASKS_cpl_dflt=192\n++ TPN_cpl_dflt=40\n++ INPES_cpl_dflt=3\n++ JNPES_cpl_dflt=8\n++ THRD_cpl_dflt=1\n++ WPG_cpl_dflt=6\n++ MPB_cpl_dflt=\'0 143\'\n++ APB_cpl_dflt=\'0 149\'\n++ OPB_cpl_dflt=\'150 179\'\n++ IPB_cpl_dflt=\'180 191\'\n++ TASKS_cpl_dflt_wwav=204\n++ TPN_cpl_dflt_wwav=40\n++ INPES_cpl_dflt_wwav=3\n++ JNPES_cpl_dflt_wwav=8\n++ THRD_cpl_dflt_wwav=1\n++ WPG_cpl_dflt_wwav=6\n++ MPB_cpl_dflt_wwav=\'0 143\'\n++ APB_cpl_dflt_wwav=\'0 149\'\n++ OPB_cpl_dflt_wwav=\'150 179\'\n++ IPB_cpl_dflt_wwav=\'180 191\'\n++ WPB_cpl_dflt_wwav=\'192 203\'\n++ TASKS_cpl_thrd=120\n++ TPN_cpl_thrd=40\n++ INPES_cpl_thrd=3\n++ JNPES_cpl_thrd=4\n++ THRD_cpl_thrd=2\n++ WPG_cpl_thrd=6\n++ MPB_cpl_thrd=\'0 77\'\n++ APB_cpl_thrd=\'0 77\'\n++ OPB_cpl_thrd=\'78 107\'\n++ IPB_cpl_thrd=\'108 119\'\n++ TASKS_cpl_bmrk=480\n++ TPN_cpl_bmrk=40\n++ INPES_cpl_bmrk=6\n++ JNPES_cpl_bmrk=8\n++ THRD_cpl_bmrk=1\n++ WPG_cpl_bmrk=24\n++ MPB_cpl_bmrk=\'0 287\'\n++ APB_cpl_bmrk=\'0 311\'\n++ OPB_cpl_bmrk=\'312 431\'\n++ IPB_cpl_bmrk=\'432 479\'\n++ TASKS_cpl_wwav=520\n++ TPN_cpl_wwav=40\n++ INPES_cpl_wwav=6\n++ JNPES_cpl_wwav=8\n++ THRD_cpl_wwav=1\n++ WPG_cpl_wwav=24\n++ MPB_cpl_wwav=\'0 287\'\n++ APB_cpl_wwav=\'0 311\'\n++ OPB_cpl_wwav=\'312 431\'\n++ IPB_cpl_wwav=\'432 479\'\n++ WPB_cpl_wwav=\'480 519\'\n++ TASKS_cpl_c192=288\n++ TPN_cpl_c192=40\n++ INPES_cpl_c192=4\n++ JNPES_cpl_c192=8\n++ THRD_cpl_c192=1\n++ WPG_cpl_c192=12\n++ MPB_cpl_c192=\'0 191\'\n++ APB_cpl_c192=\'0 203\'\n++ OPB_cpl_c192=\'204 263\'\n++ IPB_cpl_c192=\'264 287\'\n++ TASKS_cpl_c384=318\n++ TPN_cpl_c384=40\n++ INPES_cpl_c384=3\n++ JNPES_cpl_c384=8\n++ THRD_cpl_c384=1\n++ WPG_cpl_c384=6\n++ MPB_cpl_c384=\'0 143\'\n++ APB_cpl_c384=\'0 149\'\n++ OPB_cpl_c384=\'150 269\'\n++ IPB_cpl_c384=\'270 317\'\n++ TASKS_datm_100=120\n++ TPN_datm_100=40\n++ MPB_datm_100=\'16 77\'\n++ APB_datm_100=\'0 15\'\n++ OPB_datm_100=\'78 107\'\n++ IPB_datm_100=\'108 119\'\n++ TASKS_datm_025=208\n++ TPN_datm_025=40\n++ MPB_datm_025=\'0 39\'\n++ APB_datm_025=\'0 39\'\n++ OPB_datm_025=\'40 159\'\n++ IPB_datm_025=\'160 207\'\n++ [[ intel = gnu ]]\n++ WLCLK_dflt=15\n+ TEST_NR=0\n+ COMPILE_NR=0\n+ COMPILE_PREV_WW3_NR=\n+ rm -f fail_test\n+ LOG_DIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ MAX_BUILDS=10\n+ MAX_JOBS=30\n+ [[ hera.intel = jet.intel ]]\n+ ECFLOW_RUN=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/ecflow_run\n+ ECFLOW_SUITE=regtest_122270\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/ecflow_run\n+ mkdir -p /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/ecflow_run/regtest_122270\n+ cp head.h tail.h /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/ecflow_run\n+ cat\n+ [[ hera.intel = wcoss ]]\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = hera.* ]]\n+ QUEUE=batch\n+ new_compile=false\n+ in_metatask=false\n+ [[ -f rt.conf ]]\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# PROD tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # PROD tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_1\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017 =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_control | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_control ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 1\n+ TEST_NR=001\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_control\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_control_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_decomp | - jet.intel | |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_decomp | - jet.intel | | == \\#* ]]\n+ [[ RUN | fv3_ccpp_decomp | - jet.intel | | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_decomp | - jet.intel | | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_decomp \'|\' - jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_decomp\n++ echo RUN \'|\' fv3_ccpp_decomp \'|\' - jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- jet.intel\'\n++ echo RUN \'|\' fv3_ccpp_decomp \'|\' - jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' fv3_ccpp_decomp \'|\' - jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_decomp \'|\' - jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_decomp ]]\n+ [[ false == true ]]\n+ [[ - jet.intel != \'\' ]]\n+ [[ - jet.intel == -* ]]\n+ [[ - jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 2\n+ TEST_NR=002\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_decomp\n++ export \'TEST_DESCR=Compare FV3 CCPP decomp results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP decomp results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export INPES=6\n++ INPES=6\n++ export JNPES=4\n++ JNPES=4\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_decomp_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_2threads | | |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_2threads | | | == \\#* ]]\n+ [[ RUN | fv3_ccpp_2threads | | | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_2threads | | | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_2threads \'|\' \'|\' \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_2threads\n++ echo RUN \'|\' fv3_ccpp_2threads \'|\' \'|\' \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_2threads \'|\' \'|\' \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' fv3_ccpp_2threads \'|\' \'|\' \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_2threads \'|\' \'|\' \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_2threads ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 3\n+ TEST_NR=003\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_2threads\n++ export \'TEST_DESCR=Compare FV3 CCPP 2 threads results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP 2 threads results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export THRD=2\n++ THRD=2\n++ export TASKS=84\n++ TASKS=84\n++ export TPN=20\n++ TPN=20\n++ export INPES=3\n++ INPES=3\n++ export JNPES=4\n++ JNPES=4\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_2threads_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_restart | | | fv3_ccpp_control\'\n+ [[ 196 == 0 ]]\n+ [[ RUN | fv3_ccpp_restart | | | fv3_ccpp_control == \\#* ]]\n+ [[ RUN | fv3_ccpp_restart | | | fv3_ccpp_control == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_restart | | | fv3_ccpp_control == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_restart \'|\' \'|\' \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_restart\n++ echo RUN \'|\' fv3_ccpp_restart \'|\' \'|\' \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_restart \'|\' \'|\' \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' fv3_ccpp_restart \'|\' \'|\' \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_restart \'|\' \'|\' \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_restart ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 4\n+ TEST_NR=004\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_restart\n++ export \'TEST_DESCR=Compare FV3 CCPP restart results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP restart results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHROT=12\n++ FHROT=12\n++ export FHMAX=24\n++ FHMAX=24\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export NGGPS_IC=.F.\n++ NGGPS_IC=.F.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MAKE_NH=.F.\n++ MAKE_NH=.F.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n++ export NA_INIT=0\n++ NA_INIT=0\n++ export FDIAG=3\n++ FDIAG=3\n++ export NSTF_NAME=2,0,1,0,5\n++ NSTF_NAME=2,0,1,0,5\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_restart_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ fv3_ccpp_control != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_1 == complete and fv3_ccpp_control_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control\'\n+ [[ 196 == 0 ]]\n+ [[ RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control == \\#* ]]\n+ [[ RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_read_inc \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_read_inc\n++ echo RUN \'|\' fv3_ccpp_read_inc \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_read_inc \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_read_inc \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_read_inc \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_read_inc ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 5\n+ TEST_NR=005\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_read_inc\n++ export \'TEST_DESCR=Compare FV3 CCPP read_inc results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP read_inc results with previous trunk version\'\n++ export CNTL_DIR=fv3_read_inc\n++ CNTL_DIR=fv3_read_inc\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export NGGPS_IC=.F.\n++ NGGPS_IC=.F.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MAKE_NH=.F.\n++ MAKE_NH=.F.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n++ export NA_INIT=0\n++ NA_INIT=0\n++ export FHMAX=48\n++ FHMAX=48\n++ export FDIAG=3\n++ FDIAG=3\n++ export READ_INCREMENT=.T.\n++ READ_INCREMENT=.T.\n++ export NSTF_NAME=2,0,1,0,5\n++ NSTF_NAME=2,0,1,0,5\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_read_inc_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ fv3_ccpp_control != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_1 == complete and fv3_ccpp_control_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_esmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_netcdf_esmf\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_esmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_esmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_esmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_esmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_netcdf_esmf ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 6\n+ TEST_NR=006\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf\n++ export \'TEST_DESCR=Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_netcdf_esmf\n++ CNTL_DIR=fv3_wrtGauss_netcdf_esmf\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf_esmf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf_esmf\'\\\'\'\'\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_netcdf_esmf_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_netcdf\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_netcdf ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 7\n+ TEST_NR=007\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_netcdf\n++ export \'TEST_DESCR=Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_netcdf\n++ CNTL_DIR=fv3_wrtGauss_netcdf\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_netcdf_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_netcdf_parallel\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_netcdf_parallel ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 8\n+ TEST_NR=008\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel\n++ export \'TEST_DESCR=Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_netcdf_parallel\n++ CNTL_DIR=fv3_wrtGauss_netcdf_parallel\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n+++ expr 150 / 40 + 1\n++ export NODES=4\n++ NODES=4\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf_parallel\'\\\'\' \'\\\'\'netcdf_parallel\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf_parallel\'\\\'\' \'\\\'\'netcdf_parallel\'\\\'\'\'\n++ export IDEFLATE=1\n++ IDEFLATE=1\n++ export NBITS=14\n++ NBITS=14\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_netcdf_parallel_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGlatlon_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGlatlon_netcdf\n++ echo RUN \'|\' fv3_ccpp_wrtGlatlon_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGlatlon_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGlatlon_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGlatlon_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGlatlon_netcdf ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 9\n+ TEST_NR=009\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGlatlon_netcdf\n++ export \'TEST_DESCR=Compare FV3 CCPP Global latlon grid netcdf output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Global latlon grid netcdf output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGlatlon_netcdf\n++ CNTL_DIR=fv3_wrtGlatlon_netcdf\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export \'OUTPUT_GRID=\'\\\'\'global_latlon\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'global_latlon\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGlatlon_netcdf_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_nemsio\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_nemsio ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 10\n+ TEST_NR=010\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_nemsio\n++ export \'TEST_DESCR=Compare FV3 CCPP Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_nemsio\n++ CNTL_DIR=fv3_wrtGauss_nemsio\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_nemsio_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c192 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_nemsio_c192\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c192 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c192 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c192 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c192 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_nemsio_c192 ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 11\n+ TEST_NR=011\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192\n++ export \'TEST_DESCR=Compare FV3 CCPP c192 Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP c192 Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_nemsio_c192\n++ CNTL_DIR=fv3_wrtGauss_nemsio_c192\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=300\n++ TASKS=300\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export SYEAR=2017\n++ SYEAR=2017\n++ export SMONTH=11\n++ SMONTH=11\n++ export SDAY=01\n++ SDAY=01\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_nemsio_c192_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_stochy | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_stochy | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_stochy | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_stochy | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_stochy\n++ echo RUN \'|\' fv3_ccpp_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_stochy ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 12\n+ TEST_NR=012\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_stochy\n++ export \'TEST_DESCR=Compare FV3 CCPP stochastic results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP stochastic results with previous trunk version\'\n++ export CNTL_DIR=fv3_stochy\n++ CNTL_DIR=fv3_stochy\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DO_SPPT=.T.\n++ DO_SPPT=.T.\n++ export DO_SHUM=.T.\n++ DO_SHUM=.T.\n++ export DO_SKEB=.T.\n++ DO_SKEB=.T.\n++ export SKEB=0.3\n++ SKEB=0.3\n++ export SHUM=0.003\n++ SHUM=0.003\n++ export SPPT=0.2\n++ SPPT=0.2\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export FHMAX=12\n++ FHMAX=12\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_stochy_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_ca | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_ca | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_ca | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_ca | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_ca \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_ca\n++ echo RUN \'|\' fv3_ccpp_ca \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_ca \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_ca \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_ca \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_ca ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 13\n+ TEST_NR=013\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_ca\n++ export \'TEST_DESCR=Compare FV3 cellular automata results with previous trunk version (sub-grid and global) CCPP\'\n++ TEST_DESCR=\'Compare FV3 cellular automata results with previous trunk version (sub-grid and global) CCPP\'\n++ export CNTL_DIR=fv3_ca\n++ CNTL_DIR=fv3_ca\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_ca.nml.IN\n++ INPUT_NML=ccpp_ca.nml.IN\n++ export DO_CA=.T.\n++ DO_CA=.T.\n++ export CA_SGS=.T.\n++ CA_SGS=.T.\n++ export CA_GLOBAL=.T.\n++ CA_GLOBAL=.T.\n++ export FHMAX=12\n++ FHMAX=12\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_ca_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_lndp | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_lndp | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_lndp | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_lndp | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_lndp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_lndp\n++ echo RUN \'|\' fv3_ccpp_lndp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_lndp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_lndp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_lndp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_lndp ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 14\n+ TEST_NR=014\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_lndp\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version, with land pert scheme turned on\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version, with land pert scheme turned on\'\n++ export CNTL_DIR=fv3_lndp\n++ CNTL_DIR=fv3_lndp\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n+++ expr 150 / 40 + 1\n++ export NODES=4\n++ NODES=4\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_lndp.nml.IN\n++ INPUT_NML=ccpp_lndp.nml.IN\n++ export LNDP_TYPE=2\n++ LNDP_TYPE=2\n++ export N_VAR_LNDP=2\n++ N_VAR_LNDP=2\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_lndp_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it\'\n+ [[ 120 == 0 ]]\n+ [[ # temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control\'\n+ [[ 196 == 0 ]]\n+ [[ RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control == \\#* ]]\n+ [[ RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_iau \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_iau\n++ echo RUN \'|\' fv3_ccpp_iau \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_iau \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_iau \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_iau \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_iau ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 15\n+ TEST_NR=015\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_iau\n++ export \'TEST_DESCR=Compare FV3 CCPP IAU results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP IAU results with previous trunk version\'\n++ export CNTL_DIR=fv3_iau\n++ CNTL_DIR=fv3_iau\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export NGGPS_IC=.F.\n++ NGGPS_IC=.F.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MAKE_NH=.F.\n++ MAKE_NH=.F.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n++ export NA_INIT=0\n++ NA_INIT=0\n++ export FHMAX=48\n++ FHMAX=48\n++ export FDIAG=3\n++ FDIAG=3\n++ export NSTF_NAME=2,0,1,0,5\n++ NSTF_NAME=2,0,1,0,5\n++ export IAU_INC_FILES=fv3_increment.nc\n++ IAU_INC_FILES=fv3_increment.nc\n++ export IAU_DRYMASSFIXER=.true.\n++ IAU_DRYMASSFIXER=.true.\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_iau_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ fv3_ccpp_control != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_1 == complete and fv3_ccpp_control_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_lheatstrg | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_lheatstrg | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_lheatstrg | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_lheatstrg | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_lheatstrg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_lheatstrg\n++ echo RUN \'|\' fv3_ccpp_lheatstrg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_lheatstrg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_lheatstrg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_lheatstrg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_lheatstrg ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 16\n+ TEST_NR=016\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_lheatstrg\n++ export \'TEST_DESCR=Compare FV3 CCPP control with lheatstrg on Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control with lheatstrg on Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_lheatstrg\n++ CNTL_DIR=fv3_lheatstrg\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n++ export LHEATSTRG=.T.\n++ LHEATSTRG=.T.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_lheatstrg_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'# WW3 not working on Cheyenne in the past, need to check if it works now\'\n+ [[ 72 == 0 ]]\n+ [[ # WW3 not working on Cheyenne in the past, need to check if it works now == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y\'\n++ cut \'-d|\' -f3\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'+ wcoss_dell_p3 hera.intel orion.intel\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel != \'\' ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == -* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == +* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_2\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_GFDLMP WW3=Y =~ WW3=Y ]]\n+ [[ \'\' != \'\' ]]\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_GFDLMP WW3=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_GFDLMP WW3=Y =~ WW3=Y ]]\n+ COMPILE_PREV_WW3_NR=2\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmprad\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'+ wcoss_dell_p3 hera.intel orion.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmprad ]]\n+ [[ false == true ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel != \'\' ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == -* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == +* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 17\n+ TEST_NR=017\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmprad\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP radiation interaction option with the control\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP radiation interaction option with the control\'\n++ export CNTL_DIR=fv3_gfdlmprad\n++ CNTL_DIR=fv3_gfdlmprad\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc out_grd.glo_30m\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc out_grd.glo_30m\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=192\n++ TASKS=192\n++ DT_ATMOS=1200\n++ export LGFDLMPRAD=.true.\n++ LGFDLMPRAD=.true.\n++ export EFFR_IN=.true.\n++ EFFR_IN=.true.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export CPL=.true.\n++ CPL=.true.\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export \'wav_petlist_bounds=150 191\'\n++ wav_petlist_bounds=\'150 191\'\n++ export coupling_interval_sec=3600.0\n++ coupling_interval_sec=3600.0\n++ export NEMS_CONFIGURE=nems.configure.blocked_atm_wav.IN\n++ NEMS_CONFIGURE=nems.configure.blocked_atm_wav.IN\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmprad_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_2 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_atmwav \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmprad_atmwav\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_atmwav \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'+ wcoss_dell_p3 hera.intel orion.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_atmwav \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_atmwav \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_atmwav \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmprad_atmwav ]]\n+ [[ false == true ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel != \'\' ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == -* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == +* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 18\n+ TEST_NR=018\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmprad_atmwav\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP radiation interaction 2way atm-way coupling option with the control\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP radiation interaction 2way atm-way coupling option with the control\'\n++ export CNTL_DIR=fv3_gfdlmprad_atmwav\n++ CNTL_DIR=fv3_gfdlmprad_atmwav\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc out_grd.glo_30m\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc out_grd.glo_30m\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=192\n++ TASKS=192\n++ DT_ATMOS=1200\n++ export LGFDLMPRAD=.true.\n++ LGFDLMPRAD=.true.\n++ export EFFR_IN=.true.\n++ EFFR_IN=.true.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export CPL=.true.\n++ CPL=.true.\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export CPLWAV2ATM=.T.\n++ CPLWAV2ATM=.T.\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export \'wav_petlist_bounds=150 191\'\n++ wav_petlist_bounds=\'150 191\'\n++ export coupling_interval_sec=1200.0\n++ coupling_interval_sec=1200.0\n++ export NEMS_CONFIGURE=nems.configure.blocked_atm_wav_2way.IN\n++ NEMS_CONFIGURE=nems.configure.blocked_atm_wav_2way.IN\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmprad_atmwav_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_2 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c768 \'|\' + hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_nemsio_c768\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c768 \'|\' + hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'+ hera.intel orion.intel\'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c768 \'|\' + hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c768 \'|\' + hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c768 \'|\' + hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_nemsio_c768 ]]\n+ [[ false == true ]]\n+ [[ + hera.intel orion.intel != \'\' ]]\n+ [[ + hera.intel orion.intel == -* ]]\n+ [[ + hera.intel orion.intel == +* ]]\n+ [[ + hera.intel orion.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 19\n+ TEST_NR=019\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768\n++ export \'TEST_DESCR=Compare FV3 CCPP c768 Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP c768 Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_nemsio_c768\n++ CNTL_DIR=fv3_wrtGauss_nemsio_c768\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf006.nemsio dynf006.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc out_grd.glo_10m\n out_grd.ant_9km\n out_grd.aoc_9km\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf006.nemsio dynf006.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc out_grd.glo_10m\n out_grd.ant_9km\n out_grd.aoc_9km\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=1470\n++ TASKS=1470\n++ [[ hera.intel = cheyenne.* ]]\n++ [[ hera.intel = hera.* ]]\n++ export TPN=10\n++ TPN=10\n++ export INPES=16\n++ INPES=16\n++ export JNPES=12\n++ JNPES=12\n++ export NPX=769\n++ NPX=769\n++ export NPY=769\n++ NPY=769\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export SYEAR=2017\n++ SYEAR=2017\n++ export SMONTH=01\n++ SMONTH=01\n++ export SDAY=06\n++ SDAY=06\n++ export DT_ATMOS=225\n++ DT_ATMOS=225\n++ export FHMAX=06\n++ FHMAX=06\n++ export WLCLK=30\n++ WLCLK=30\n++ export WRITE_GROUP=3\n++ WRITE_GROUP=3\n++ export WRTTASK_PER_GROUP=36\n++ WRTTASK_PER_GROUP=36\n++ export FDIAG=0,1,2,3,4,5,6\n++ FDIAG=0,1,2,3,4,5,6\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IMO=3072\n++ IMO=3072\n++ export JMO=1536\n++ JMO=1536\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t1534.3072.1536.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t1534.3072.1536.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ export CPL=.true.\n++ CPL=.true.\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export \'atm_petlist_bounds=0 1259\'\n++ atm_petlist_bounds=\'0 1259\'\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export \'wav_petlist_bounds=1260 1469\'\n++ wav_petlist_bounds=\'1260 1469\'\n++ export coupling_interval_sec=1800.0\n++ coupling_interval_sec=1800.0\n++ export NEMS_CONFIGURE=nems.configure.blocked_atm_wav.IN\n++ NEMS_CONFIGURE=nems.configure.blocked_atm_wav.IN\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=147\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_nemsio_c768_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_2 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_3\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_FV3WAM 32BIT=Y MULTI_GASES=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_FV3WAM 32BIT=Y MULTI_GASES=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_FV3WAM 32BIT=Y MULTI_GASES=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_multigases | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_multigases | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_multigases | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_multigases | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_multigases \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_multigases\n++ echo RUN \'|\' fv3_ccpp_multigases \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_multigases \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_multigases \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_multigases \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_multigases ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 20\n+ TEST_NR=020\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_multigases\n++ export \'TEST_DESCR=Compare CCPP FV3 multi-gases results with previous trunk version\'\n++ TEST_DESCR=\'Compare CCPP FV3 multi-gases results with previous trunk version\'\n++ export CNTL_DIR=fv3_multigases\n++ CNTL_DIR=fv3_multigases\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export NPZ=149\n++ NPZ=149\n++ export NPZP=150\n++ NPZP=150\n++ DT_ATMOS=225\n++ SYEAR=2017\n++ SMONTH=01\n++ SDAY=19\n++ SHOUR=06\n++ export FHMAX=06\n++ FHMAX=06\n++ export FDIAG=0,1,2,3,4,5,6\n++ FDIAG=0,1,2,3,4,5,6\n++ export NSTF_NAME=0,0,1,0,5\n++ NSTF_NAME=0,0,1,0,5\n++ export INPUT_NML=ccpp_multi_gases.nml.IN\n++ INPUT_NML=ccpp_multi_gases.nml.IN\n++ export FV3_RUN=ccpp_multigases_run.IN\n++ FV3_RUN=ccpp_multigases_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_fv3wam\n++ CCPP_SUITE=FV3_GFS_2017_fv3wam\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_multigases_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_3 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_4\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_STRETCHED 32BIT=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_STRETCHED 32BIT=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_STRETCHED 32BIT=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_control_32bit | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_control_32bit | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_control_32bit | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_control_32bit | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_control_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_control_32bit\n++ echo RUN \'|\' fv3_ccpp_control_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_control_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_control_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_control_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_control_32bit ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 21\n+ TEST_NR=021\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_control_32bit\n++ export \'TEST_DESCR=Compare FV3 CCPP 32bit control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP 32bit control results with previous trunk version\'\n++ export CNTL_DIR=fv3_control_32bit\n++ CNTL_DIR=fv3_control_32bit\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_control_32bit_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_4 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_stretched | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_stretched | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_stretched | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_stretched | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_stretched \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_stretched\n++ echo RUN \'|\' fv3_ccpp_stretched \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_stretched \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_stretched \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_stretched \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_stretched ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 22\n+ TEST_NR=022\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_stretched\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_stretched\n++ CNTL_DIR=fv3_stretched\n++ export \'LIST_FILES= atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\' atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ INPES=2\n++ JNPES=4\n++ TPN=12\n++ TASKS=48\n++ MAKE_NH=.T.\n++ NA_INIT=1\n++ EXTERNAL_IC=.T.\n++ NGGPS_IC=.T.\n++ MOUNTAIN=.F.\n++ WARM_START=.F.\n++ FDIAG=3\n++ HYBEDMF=.T.\n++ SATMEDMF=.F.\n++ SYEAR=2018\n++ SMONTH=10\n++ SDAY=15\n++ SHOUR=00\n++ FHMAX=48\n++ DT_ATMOS=450\n++ QUILTING=.false.\n++ export INPUT_NML=ccpp_stretched-input.nml.IN\n++ INPUT_NML=ccpp_stretched-input.nml.IN\n++ export FV3_RUN=ccpp_stretched_run.IN\n++ FV3_RUN=ccpp_stretched_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_stretched\n++ CCPP_SUITE=FV3_GFS_2017_stretched\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_stretched_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_4 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_stretched_nest | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_stretched_nest | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_stretched_nest | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_stretched_nest | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_stretched_nest \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_stretched_nest\n++ echo RUN \'|\' fv3_ccpp_stretched_nest \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_stretched_nest \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_stretched_nest \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_stretched_nest \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_stretched_nest ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 23\n+ TEST_NR=023\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_stretched_nest\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_stretched_nest\n++ CNTL_DIR=fv3_stretched_nest\n++ export \'LIST_FILES= atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc atmos_4xdaily.nest02.tile7.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history2d.nest02.tile7.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc fv3_history.nest02.tile7.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.nest02.nc RESTART/fv_BC_ne.res.nest02.nc RESTART/fv_BC_sw.res.nest02.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_core.res.nest02.tile7.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_srf_wnd.res.nest02.tile7.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/fv_tracer.res.nest02.tile7.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/phy_data.nest02.tile7.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/sfc_data.nest02.tile7.nc\'\n++ LIST_FILES=\' atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc atmos_4xdaily.nest02.tile7.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history2d.nest02.tile7.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc fv3_history.nest02.tile7.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.nest02.nc RESTART/fv_BC_ne.res.nest02.nc RESTART/fv_BC_sw.res.nest02.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_core.res.nest02.tile7.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_srf_wnd.res.nest02.tile7.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/fv_tracer.res.nest02.tile7.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/phy_data.nest02.tile7.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/sfc_data.nest02.tile7.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ INPES=2\n++ JNPES=4\n++ TPN=12\n++ TASKS=96\n++ export INPES_NEST=6\n++ INPES_NEST=6\n++ export JNPES_NEST=8\n++ JNPES_NEST=8\n++ export MAKE_NH_NEST=.F.\n++ MAKE_NH_NEST=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export FDIAG=3\n++ FDIAG=3\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export SYEAR=2018\n++ SYEAR=2018\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=15\n++ SDAY=15\n++ export SHOUR=00\n++ SHOUR=00\n++ export FHMAX=48\n++ FHMAX=48\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ QUILTING=.false.\n++ export INPUT_NML=ccpp_stretched-nest-input.nml.IN\n++ INPUT_NML=ccpp_stretched-nest-input.nml.IN\n++ export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN\n++ INPUT_NEST02_NML=ccpp_input_nest02.nml.IN\n++ export FV3_RUN=ccpp_stretched_run.IN\n++ FV3_RUN=ccpp_stretched_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_stretched\n++ CCPP_SUITE=FV3_GFS_2017_stretched\n++ [[ hera.intel = *.gnu ]]\n+ NODES=8\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_stretched_nest_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_4 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_5\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN 32BIT=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN 32BIT=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN 32BIT=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_regional_control | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_regional_control | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_regional_control | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_regional_control | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_regional_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_regional_control\n++ echo RUN \'|\' fv3_ccpp_regional_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_regional_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_regional_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_regional_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_regional_control ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 24\n+ TEST_NR=024\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_regional_control\n++ export \'TEST_DESCR=Compare FV3 CCPP regional control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP regional control results with previous trunk version\'\n++ export CNTL_DIR=fv3_regional_control\n++ CNTL_DIR=fv3_regional_control\n++ export \'LIST_FILES= atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc RESTART/fv_core.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc\'\n++ LIST_FILES=\' atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc RESTART/fv_core.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=24\n++ TASKS=24\n++ export FV3_RUN=ccpp_regional_run.IN\n++ FV3_RUN=ccpp_regional_run.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export H2O_PHYS=.T.\n++ H2O_PHYS=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ export INPUT_NML=ccpp_regional.nml.IN\n++ INPUT_NML=ccpp_regional.nml.IN\n++ export FDIAG=3\n++ FDIAG=3\n++ export INPES=4\n++ INPES=4\n++ export JNPES=6\n++ JNPES=6\n++ export WRITE_RESTART_WITH_BCS=.true.\n++ WRITE_RESTART_WITH_BCS=.true.\n+ NODES=0\n+ (( NODES * TPN < TASKS ))\n+ NODES=1\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_regional_control_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_5 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control\'\n+ [[ 205 == 0 ]]\n+ [[ RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control == \\#* ]]\n+ [[ RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_regional_restart \'|\' \'|\' fv3 \'|\' fv3_ccpp_regional_control\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_regional_restart\n++ echo RUN \'|\' fv3_ccpp_regional_restart \'|\' \'|\' fv3 \'|\' fv3_ccpp_regional_control\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_regional_restart \'|\' \'|\' fv3 \'|\' fv3_ccpp_regional_control\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_regional_restart \'|\' \'|\' fv3 \'|\' fv3_ccpp_regional_control\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=fv3_ccpp_regional_control\n++ echo RUN \'|\' fv3_ccpp_regional_restart \'|\' \'|\' fv3 \'|\' fv3_ccpp_regional_control\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_regional_restart ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 25\n+ TEST_NR=025\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_regional_restart\n++ export \'TEST_DESCR=Compare FV3 CCPP regional restart results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP regional restart results with previous trunk version\'\n++ export CNTL_DIR=fv3_regional_restart\n++ CNTL_DIR=fv3_regional_restart\n++ export \'LIST_FILES= atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc \'\n++ LIST_FILES=\' atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc \'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=24\n++ TASKS=24\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export FV3_RUN=ccpp_regional_run.IN\n++ FV3_RUN=ccpp_regional_run.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export H2O_PHYS=.T.\n++ H2O_PHYS=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ export INPUT_NML=ccpp_regional.nml.IN\n++ INPUT_NML=ccpp_regional.nml.IN\n++ export FDIAG=3\n++ FDIAG=3\n++ export INPES=4\n++ INPES=4\n++ export JNPES=6\n++ JNPES=6\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export NGGPS_IC=.F.\n++ NGGPS_IC=.F.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n++ export NA_INIT=0\n++ NA_INIT=0\n+ NODES=0\n+ (( NODES * TPN < TASKS ))\n+ NODES=1\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_regional_restart_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ fv3_ccpp_regional_control != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_5 == complete and fv3_ccpp_regional_control_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_regional_quilt | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_regional_quilt | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_regional_quilt | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_regional_quilt | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_regional_quilt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_regional_quilt\n++ echo RUN \'|\' fv3_ccpp_regional_quilt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_regional_quilt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_regional_quilt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_regional_quilt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_regional_quilt ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 26\n+ TEST_NR=026\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_regional_quilt\n++ export \'TEST_DESCR=Compare FV3 CCPP regional quilt results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP regional quilt results with previous trunk version\'\n++ export CNTL_DIR=fv3_regional_quilt\n++ CNTL_DIR=fv3_regional_quilt\n++ export \'LIST_FILES= atmos_4xdaily.nc dynf000.nc dynf024.nc phyf000.nc phyf024.nc \'\n++ LIST_FILES=\' atmos_4xdaily.nc dynf000.nc dynf024.nc phyf000.nc phyf024.nc \'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=28\n++ TASKS=28\n++ export FV3_RUN=ccpp_regional_run.IN\n++ FV3_RUN=ccpp_regional_run.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export H2O_PHYS=.T.\n++ H2O_PHYS=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ export INPUT_NML=ccpp_regional.nml.IN\n++ INPUT_NML=ccpp_regional.nml.IN\n++ export FDIAG=3\n++ FDIAG=3\n++ export INPES=6\n++ INPES=6\n++ export JNPES=4\n++ JNPES=4\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=0\n+ (( NODES * TPN < TASKS ))\n+ NODES=1\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_regional_quilt_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_5 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_regional_quilt_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_regional_quilt_netcdf_parallel\n++ echo RUN \'|\' fv3_ccpp_regional_quilt_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_regional_quilt_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_regional_quilt_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_regional_quilt_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_regional_quilt_netcdf_parallel ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 27\n+ TEST_NR=027\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel\n++ export \'TEST_DESCR=Compare FV3 CCPP regional quilt results with parallel netcdf with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP regional quilt results with parallel netcdf with previous trunk version\'\n++ export CNTL_DIR=fv3_regional_quilt_netcdf_parallel\n++ CNTL_DIR=fv3_regional_quilt_netcdf_parallel\n++ export \'LIST_FILES= atmos_4xdaily.nc dynf000.nc dynf024.nc phyf000.nc phyf024.nc \'\n++ LIST_FILES=\' atmos_4xdaily.nc dynf000.nc dynf024.nc phyf000.nc phyf024.nc \'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=28\n++ TASKS=28\n++ export FV3_RUN=ccpp_regional_run.IN\n++ FV3_RUN=ccpp_regional_run.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export H2O_PHYS=.T.\n++ H2O_PHYS=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ export INPUT_NML=ccpp_regional.nml.IN\n++ INPUT_NML=ccpp_regional.nml.IN\n++ export FDIAG=3\n++ FDIAG=3\n++ export INPES=6\n++ INPES=6\n++ export JNPES=4\n++ JNPES=4\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=0\n+ (( NODES * TPN < TASKS ))\n+ NODES=1\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_regional_quilt_netcdf_parallel_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_5 == complete\'\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_6\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmp | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmp | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmp | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmp | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmp\n++ echo RUN \'|\' fv3_ccpp_gfdlmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfdlmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmp ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 28\n+ TEST_NR=028\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmp\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfdlmp\n++ CNTL_DIR=fv3_gfdlmp\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmp_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_6 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_gwd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmprad_gwd\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_gwd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_gwd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_gwd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_gwd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmprad_gwd ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 29\n+ TEST_NR=029\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmprad_gwd\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP radiation interaction option and gravity wave drag with the control\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP radiation interaction option and gravity wave drag with the control\'\n++ export CNTL_DIR=fv3_gfdlmprad_gwd\n++ CNTL_DIR=fv3_gfdlmprad_gwd\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export LGFDLMPRAD=.true.\n++ LGFDLMPRAD=.true.\n++ export EFFR_IN=.true.\n++ EFFR_IN=.true.\n++ export DO_UGWP=.true.\n++ DO_UGWP=.true.\n++ export DO_TOFD=.true.\n++ DO_TOFD=.true.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmprad_gwd_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_6 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmprad_noahmp\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmprad_noahmp ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 30\n+ TEST_NR=030\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmprad_noahmp\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP radiation interaction and Noah MP option with the control\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP radiation interaction and Noah MP option with the control\'\n++ export CNTL_DIR=fv3_gfdlmprad_noahmp\n++ CNTL_DIR=fv3_gfdlmprad_noahmp\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export LGFDLMPRAD=.true.\n++ LGFDLMPRAD=.true.\n++ export EFFR_IN=.true.\n++ EFFR_IN=.true.\n++ export LSM=2\n++ LSM=2\n++ export LANDICE=.false.\n++ LANDICE=.false.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp_noahmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp_noahmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmprad_noahmp_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_6 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_7\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_CSAWMGSHOC,FV3_GFS_2017_CSAWMG,FV3_GFS_2017_SATMEDMF,FV3_GFS_2017_SATMEDMFQ =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_CSAWMGSHOC,FV3_GFS_2017_CSAWMG,FV3_GFS_2017_SATMEDMF,FV3_GFS_2017_SATMEDMFQ =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_CSAWMGSHOC,FV3_GFS_2017_CSAWMG,FV3_GFS_2017_SATMEDMF,FV3_GFS_2017_SATMEDMFQ =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_csawmgshoc | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_csawmgshoc | | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_csawmg | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_csawmg | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_csawmg | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_csawmg | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_csawmg\n++ echo RUN \'|\' fv3_ccpp_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_csawmg ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 31\n+ TEST_NR=031\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_csawmg\n++ export \'TEST_DESCR=Compare FV3 CCPP csawmg results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP csawmg results with previous trunk version\'\n++ export CNTL_DIR=fv3_csawmg\n++ CNTL_DIR=fv3_csawmg\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=600\n++ export INPUT_NML=ccpp_csawmg.nml.IN\n++ INPUT_NML=ccpp_csawmg.nml.IN\n++ export FV3_RUN=ccpp_csawmg_run.IN\n++ FV3_RUN=ccpp_csawmg_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_csawmg\n++ CCPP_SUITE=FV3_GFS_2017_csawmg\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_csawmg_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_7 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_satmedmf | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_satmedmf | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_satmedmf | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_satmedmf | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_satmedmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_satmedmf\n++ echo RUN \'|\' fv3_ccpp_satmedmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_satmedmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_satmedmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_satmedmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_satmedmf ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 32\n+ TEST_NR=032\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_satmedmf\n++ export \'TEST_DESCR=Compare FV3 CCPP control with satmedmf on Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control with satmedmf on Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_satmedmf\n++ CNTL_DIR=fv3_satmedmf\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DT_ATMOS=1200\n++ DT_ATMOS=1200\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export FV3_RUN=ccpp_satmedmf_run.IN\n++ FV3_RUN=ccpp_satmedmf_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_satmedmf\n++ CCPP_SUITE=FV3_GFS_2017_satmedmf\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_satmedmf_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_7 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_satmedmfq | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_satmedmfq | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_satmedmfq | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_satmedmfq | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_satmedmfq\n++ echo RUN \'|\' fv3_ccpp_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_satmedmfq ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 33\n+ TEST_NR=033\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_satmedmfq\n++ export \'TEST_DESCR=Compare FV3 CCPP control with satmedmfq on Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control with satmedmfq on Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_satmedmfq\n++ CNTL_DIR=fv3_satmedmfq\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DT_ATMOS=1200\n++ DT_ATMOS=1200\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export ISATMEDMF=1\n++ ISATMEDMF=1\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export FV3_RUN=ccpp_satmedmf_run.IN\n++ FV3_RUN=ccpp_satmedmf_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_satmedmfq\n++ CCPP_SUITE=FV3_GFS_2017_satmedmfq\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_satmedmfq_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_7 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_8\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_CPT_V0,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RAP,FV3_HRRR,FV3_RRFS_V1BETA 32BIT=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_CPT_V0,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RAP,FV3_HRRR,FV3_RRFS_V1BETA 32BIT=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_CPT_V0,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RAP,FV3_HRRR,FV3_RRFS_V1BETA 32BIT=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmp_32bit | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmp_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmp_32bit\n++ echo RUN \'|\' fv3_ccpp_gfdlmp_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfdlmp_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmp_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmp_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmp_32bit ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 34\n+ TEST_NR=034\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmp_32bit\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFDL-MP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFDL-MP results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfdlmp_32bit\n++ CNTL_DIR=fv3_gfdlmp_32bit\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmp_32bit_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_32bit_post \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmprad_32bit_post\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_32bit_post \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_32bit_post \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_32bit_post \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_32bit_post \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmprad_32bit_post ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 35\n+ TEST_NR=035\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmprad_32bit_post\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP radiation interaction / inline post option with the control\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP radiation interaction / inline post option with the control\'\n++ export CNTL_DIR=fv3_gfdlmprad_32bit_post\n++ CNTL_DIR=fv3_gfdlmprad_32bit_post\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio GFSFLX.GrbF00 GFSPRS.GrbF00 GFSFLX.GrbF24 GFSPRS.GrbF24 RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio GFSFLX.GrbF00 GFSPRS.GrbF00 GFSFLX.GrbF24 GFSPRS.GrbF24 RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export LGFDLMPRAD=.true.\n++ LGFDLMPRAD=.true.\n++ export EFFR_IN=.true.\n++ EFFR_IN=.true.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.true.\n++ WRITE_DOPOST=.true.\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmprad_32bit_post_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_cpt | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_cpt | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_cpt | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_cpt | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_cpt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_cpt\n++ echo RUN \'|\' fv3_ccpp_cpt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_cpt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_cpt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_cpt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_cpt ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 36\n+ TEST_NR=036\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_cpt\n++ export \'TEST_DESCR=Compare FV3 CCPP CPT results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP CPT results with previous trunk version\'\n++ export CNTL_DIR=fv3_cpt\n++ CNTL_DIR=fv3_cpt\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export DT_ATMOS=300\n++ DT_ATMOS=300\n++ export SYEAR=2017\n++ SYEAR=2017\n++ export SMONTH=08\n++ SMONTH=08\n++ export SDAY=22\n++ SDAY=22\n++ export SHOUR=00\n++ SHOUR=00\n++ export TASKS=204\n++ TASKS=204\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export INPES=4\n++ INPES=4\n++ export JNPES=8\n++ JNPES=8\n++ export NPZ=127\n++ NPZ=127\n++ export NPZP=128\n++ NPZP=128\n++ export INPUT_NML=ccpp_cpt.nml.IN\n++ INPUT_NML=ccpp_cpt.nml.IN\n++ export FV3_RUN=ccpp_cpt_run.IN\n++ FV3_RUN=ccpp_cpt_run.IN\n++ export CCPP_SUITE=FV3_CPT_v0\n++ CCPP_SUITE=FV3_CPT_v0\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n+ NODES=5\n+ (( NODES * TPN < TASKS ))\n+ NODES=6\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_cpt_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gsd | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gsd | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gsd | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gsd | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gsd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gsd\n++ echo RUN \'|\' fv3_ccpp_gsd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gsd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gsd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gsd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gsd ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 37\n+ TEST_NR=037\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gsd\n++ export \'TEST_DESCR=Compare FV3 CCPP GSD results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GSD results with previous trunk version\'\n++ export CNTL_DIR=fv3_gsd\n++ CNTL_DIR=fv3_gsd\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=48\n++ FHMAX=48\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GSD_v0\n++ CCPP_SUITE=FV3_GSD_v0\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export IMFSHALCNV=3\n++ IMFSHALCNV=3\n++ export IMFDEEPCNV=3\n++ IMFDEEPCNV=3\n++ export LSM=3\n++ LSM=3\n++ export LSOIL_LSM=9\n++ LSOIL_LSM=9\n++ export KICE=9\n++ KICE=9\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gsd_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'# These two tests crash with NaNs on jet.intel\'\n+ [[ 46 == 0 ]]\n+ [[ # These two tests crash with NaNs on jet.intel == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_rap | - jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_rap | - jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_rap | - jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_rap | - jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_rap \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_rap\n++ echo RUN \'|\' fv3_ccpp_rap \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- jet.intel\'\n++ echo RUN \'|\' fv3_ccpp_rap \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_rap \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_rap \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_rap ]]\n+ [[ false == true ]]\n+ [[ - jet.intel != \'\' ]]\n+ [[ - jet.intel == -* ]]\n+ [[ - jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 38\n+ TEST_NR=038\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_rap\n++ export \'TEST_DESCR=Compare FV3 CCPP RAP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP RAP results with previous trunk version\'\n++ export CNTL_DIR=fv3_rap\n++ CNTL_DIR=fv3_rap\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_RAP\n++ CCPP_SUITE=FV3_RAP\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export DO_MYNNSFCLAY=.T.\n++ DO_MYNNSFCLAY=.T.\n++ export IMFSHALCNV=3\n++ IMFSHALCNV=3\n++ export IMFDEEPCNV=3\n++ IMFDEEPCNV=3\n++ export LSM=3\n++ LSM=3\n++ export LSOIL_LSM=9\n++ LSOIL_LSM=9\n++ export KICE=9\n++ KICE=9\n++ export GWD_OPT=3\n++ GWD_OPT=3\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.T.\n++ DO_GSL_DRAG_LS_BL=.T.\n++ export DO_GSL_DRAG_SS=.T.\n++ DO_GSL_DRAG_SS=.T.\n++ export DO_GSL_DRAG_TOFD=.T.\n++ DO_GSL_DRAG_TOFD=.T.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_rap_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_hrrr | - jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_hrrr \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_hrrr\n++ echo RUN \'|\' fv3_ccpp_hrrr \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- jet.intel\'\n++ echo RUN \'|\' fv3_ccpp_hrrr \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_hrrr \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_hrrr \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_hrrr ]]\n+ [[ false == true ]]\n+ [[ - jet.intel != \'\' ]]\n+ [[ - jet.intel == -* ]]\n+ [[ - jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 39\n+ TEST_NR=039\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_hrrr\n++ export \'TEST_DESCR=Compare FV3 CCPP HRRR results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP HRRR results with previous trunk version\'\n++ export CNTL_DIR=fv3_hrrr\n++ CNTL_DIR=fv3_hrrr\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_HRRR\n++ CCPP_SUITE=FV3_HRRR\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export DO_MYNNSFCLAY=.T.\n++ DO_MYNNSFCLAY=.T.\n++ export IMFSHALCNV=-1\n++ IMFSHALCNV=-1\n++ export IMFDEEPCNV=-1\n++ IMFDEEPCNV=-1\n++ export LSM=3\n++ LSM=3\n++ export LSOIL_LSM=9\n++ LSOIL_LSM=9\n++ export KICE=9\n++ KICE=9\n++ export GWD_OPT=3\n++ GWD_OPT=3\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.T.\n++ DO_GSL_DRAG_LS_BL=.T.\n++ export DO_GSL_DRAG_SS=.T.\n++ DO_GSL_DRAG_SS=.T.\n++ export DO_GSL_DRAG_TOFD=.T.\n++ DO_GSL_DRAG_TOFD=.T.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_hrrr_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_thompson | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_thompson | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_thompson | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_thompson | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_thompson\n++ echo RUN \'|\' fv3_ccpp_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ cut \'-d|\' -f4\n++ echo RUN \'|\' fv3_ccpp_thompson \'|\' \'|\' fv3 \'|\'\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_thompson ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 40\n+ TEST_NR=040\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_thompson\n++ export \'TEST_DESCR=Compare FV3 CCPP Thompson MP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Thompson MP results with previous trunk version\'\n++ export CNTL_DIR=fv3_thompson\n++ CNTL_DIR=fv3_thompson\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_thompson\n++ CCPP_SUITE=FV3_GFS_v16_thompson\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export IAER=5111\n++ IAER=5111\n++ export ICLIQ_SW=2\n++ ICLIQ_SW=2\n++ export IOVR=3\n++ IOVR=3\n++ export LHEATSTRG=.T.\n++ LHEATSTRG=.T.\n++ export DO_TOFD=.T.\n++ DO_TOFD=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_thompson_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_thompson_no_aero | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_thompson_no_aero\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_thompson_no_aero ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 41\n+ TEST_NR=041\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_thompson_no_aero\n++ export \'TEST_DESCR=Compare FV3 CCPP Thompson MP no aerosol results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Thompson MP no aerosol results with previous trunk version\'\n++ export CNTL_DIR=fv3_thompson_no_aero\n++ CNTL_DIR=fv3_thompson_no_aero\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export NSRADAR_RESET=3600.0\n++ NSRADAR_RESET=3600.0\n++ export LTAEROSOL=.F.\n++ LTAEROSOL=.F.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_thompson\n++ CCPP_SUITE=FV3_GFS_v16_thompson\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export IAER=5111\n++ IAER=5111\n++ export ICLIQ_SW=2\n++ ICLIQ_SW=2\n++ export IOVR=3\n++ IOVR=3\n++ export LHEATSTRG=.T.\n++ LHEATSTRG=.T.\n++ export DO_TOFD=.T.\n++ DO_TOFD=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_thompson_no_aero_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'# This test crashes with NaNs on jet.intel\'\n+ [[ 42 == 0 ]]\n+ [[ # This test crashes with NaNs on jet.intel == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_rrfs_v1beta\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- jet.intel\'\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_rrfs_v1beta ]]\n+ [[ false == true ]]\n+ [[ - jet.intel != \'\' ]]\n+ [[ - jet.intel == -* ]]\n+ [[ - jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 42\n+ TEST_NR=042\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_rrfs_v1beta\n++ export \'TEST_DESCR=Compare FV3 CCPP RRFS_v1beta results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP RRFS_v1beta results with previous trunk version\'\n++ export CNTL_DIR=fv3_rrfs_v1beta\n++ CNTL_DIR=fv3_rrfs_v1beta\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_RRFS_v1beta\n++ CCPP_SUITE=FV3_RRFS_v1beta\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export IMFSHALCNV=-1\n++ IMFSHALCNV=-1\n++ export IMFDEEPCNV=-1\n++ IMFDEEPCNV=-1\n++ export LSM=2\n++ LSM=2\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export DO_MYNNSFCLAY=.T.\n++ DO_MYNNSFCLAY=.T.\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_rrfs_v1beta_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_9\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_V15P2,FV3_GFS_V16,FV3_GFS_V15P2_RRTMGP,FV3_GFS_V16_RRTMGP =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_V15P2,FV3_GFS_V16,FV3_GFS_V15P2_RRTMGP,FV3_GFS_V16_RRTMGP =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_V15P2,FV3_GFS_V16,FV3_GFS_V15P2_RRTMGP,FV3_GFS_V16_RRTMGP =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0\'\n+ [[ 111 == 0 ]]\n+ [[ # fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2 \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v15p2\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2 \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- cheyenne.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2 \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2 \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2 \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v15p2 ]]\n+ [[ false == true ]]\n+ [[ - cheyenne.intel != \'\' ]]\n+ [[ - cheyenne.intel == -* ]]\n+ [[ - cheyenne.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 43\n+ TEST_NR=043\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v15p2\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFS v15.2 results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFS v15.2 results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v15p2\n++ CNTL_DIR=fv3_gfs_v15p2\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export FV3_RUN=ccpp_gfs_v15_run.IN\n++ FV3_RUN=ccpp_gfs_v15_run.IN\n++ export CCPP_SUITE=FV3_GFS_v15p2\n++ CCPP_SUITE=FV3_GFS_v15p2\n++ export INPUT_NML=ccpp_v15p2_c96.nml.IN\n++ INPUT_NML=ccpp_v15p2_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v15p2_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16 | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16 | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16 | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16\n++ echo RUN \'|\' fv3_ccpp_gfs_v16 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16 ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 44\n+ TEST_NR=044\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFS v16 results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFS v16 results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16\n++ CNTL_DIR=fv3_gfs_v16\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export FHMAX=48\n++ FHMAX=48\n++ export RESTART_INTERVAL=24\n++ RESTART_INTERVAL=24\n++ export NSTF_NAME=2,1,0,0,0\n++ NSTF_NAME=2,1,0,0,0\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16\n++ CCPP_SUITE=FV3_GFS_v16\n++ export INPUT_NML=ccpp_v16_c96.nml.IN\n++ INPUT_NML=ccpp_v16_c96.nml.IN\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16\'\n+ [[ 196 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_restart \'|\' \'|\' \'|\' fv3_ccpp_gfs_v16\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_restart\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_restart \'|\' \'|\' \'|\' fv3_ccpp_gfs_v16\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_restart \'|\' \'|\' \'|\' fv3_ccpp_gfs_v16\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_restart \'|\' \'|\' \'|\' fv3_ccpp_gfs_v16\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=fv3_ccpp_gfs_v16\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_restart \'|\' \'|\' \'|\' fv3_ccpp_gfs_v16\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_restart ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 45\n+ TEST_NR=045\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_restart\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFS v16 results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFS v16 results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16\n++ CNTL_DIR=fv3_gfs_v16\n++ export \'LIST_FILES=phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export FHMAX=48\n++ FHMAX=48\n++ export RESTART_INTERVAL=24\n++ RESTART_INTERVAL=24\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export NGGPS_IC=.F.\n++ NGGPS_IC=.F.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MAKE_NH=.F.\n++ MAKE_NH=.F.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n++ export NSTF_NAME=2,0,0,0,0\n++ NSTF_NAME=2,0,0,0,0\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16\n++ CCPP_SUITE=FV3_GFS_v16\n++ export INPUT_NML=ccpp_v16_c96.nml.IN\n++ INPUT_NML=ccpp_v16_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_restart_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ fv3_ccpp_gfs_v16 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_9 == complete and fv3_ccpp_gfs_v16_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_stochy | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_stochy\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_stochy ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 46\n+ TEST_NR=046\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_stochy\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFS v16 stochastic results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFS v16 stochastic results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16_stochy\n++ CNTL_DIR=fv3_gfs_v16_stochy\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=600\n++ export FHMAX=12\n++ FHMAX=12\n++ export NSTF_NAME=2,1,0,0,0\n++ NSTF_NAME=2,1,0,0,0\n++ export DO_SPPT=.T.\n++ DO_SPPT=.T.\n++ export DO_SHUM=.T.\n++ DO_SHUM=.T.\n++ export DO_SKEB=.T.\n++ DO_SKEB=.T.\n++ export SKEB=0.3\n++ SKEB=0.3\n++ export SHUM=0.003\n++ SHUM=0.003\n++ export SPPT=0.2\n++ SPPT=0.2\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16\n++ CCPP_SUITE=FV3_GFS_v16\n++ export INPUT_NML=ccpp_v16_c96.nml.IN\n++ INPUT_NML=ccpp_v16_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_stochy_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v15p2_RRTMGP\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- cheyenne.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v15p2_RRTMGP ]]\n+ [[ false == true ]]\n+ [[ - cheyenne.intel != \'\' ]]\n+ [[ - cheyenne.intel == -* ]]\n+ [[ - cheyenne.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 47\n+ TEST_NR=047\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP\n++ export \'TEST_DESCR=Compare FV3 CCPP GFS v15.2 w/ RRTMGP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFS v15.2 w/ RRTMGP results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v15p2_RRTMGP\n++ CNTL_DIR=fv3_gfs_v15p2_RRTMGP\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export DO_RRTMGP=.T.\n++ DO_RRTMGP=.T.\n++ export FV3_RUN=ccpp_gfs_v15_run.IN\n++ FV3_RUN=ccpp_gfs_v15_run.IN\n++ export CCPP_SUITE=FV3_GFS_v15p2_RRTMGP\n++ CCPP_SUITE=FV3_GFS_v15p2_RRTMGP\n++ export INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN\n++ INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v15p2_RRTMGP_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_RRTMGP\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_RRTMGP ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 48\n+ TEST_NR=048\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_RRTMGP\n++ export \'TEST_DESCR=Compare FV3 CCPP GFS v16 w/ RRTMGP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFS v16 w/ RRTMGP results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16_RRTMGP\n++ CNTL_DIR=fv3_gfs_v16_RRTMGP\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export DO_RRTMGP=.T.\n++ DO_RRTMGP=.T.\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN\n++ INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_RRTMGP_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_c192L127 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_RRTMGP_c192L127\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_c192L127 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_c192L127 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_c192L127 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_c192L127 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 49\n+ TEST_NR=049\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127\n++ export \'TEST_DESCR=Compare FV3 c192L217 CCPP GFS v16 w/ RRTMGP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 c192L217 CCPP GFS v16 w/ RRTMGP results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16_RRTMGP_c192L127\n++ CNTL_DIR=fv3_gfs_v16_RRTMGP_c192L127\n++ export \'LIST_FILES=phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DO_RRTMGP=.T.\n++ DO_RRTMGP=.T.\n++ export TASKS=150\n++ TASKS=150\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export NPZ=127\n++ NPZ=127\n++ export NPZP=128\n++ NPZP=128\n++ export SYEAR=2019\n++ SYEAR=2019\n++ export SMONTH=01\n++ SMONTH=01\n++ export SDAY=20\n++ SDAY=20\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export FHMAX=12\n++ FHMAX=12\n++ export WLCLK=30\n++ WLCLK=30\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export FV3_RUN=ccpp_gfs_v16_run_c192L127.IN\n++ FV3_RUN=ccpp_gfs_v16_run_c192L127.IN\n++ export CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ export INPUT_NML=ccpp_v16_c192L127_rrtmgp.nml.IN\n++ INPUT_NML=ccpp_v16_c192L127_rrtmgp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v16_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_v16_csawmg\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v16_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v16_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_10\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_v16_csawmg\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_V16_CSAWMG =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_V16_CSAWMG =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_V16_CSAWMG =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests\'\n+ [[ 90 == 0 ]]\n+ [[ # fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmg \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfsv16_csawmg\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmg \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- cheyenne.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmg \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmg \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmg \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfsv16_csawmg ]]\n+ [[ false == true ]]\n+ [[ - cheyenne.intel != \'\' ]]\n+ [[ - cheyenne.intel == -* ]]\n+ [[ - cheyenne.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 50\n+ TEST_NR=050\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfsv16_csawmg\n++ export \'TEST_DESCR=Compare FV3 CCPP v16_csawmg results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP v16_csawmg results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfsv16_csawmg\n++ CNTL_DIR=fv3_gfsv16_csawmg\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=600\n++ export INPUT_NML=ccpp_gfsv16_csawmg.nml.IN\n++ INPUT_NML=ccpp_gfsv16_csawmg.nml.IN\n++ export FV3_RUN=ccpp_gfsv16_csawmg_run.IN\n++ FV3_RUN=ccpp_gfsv16_csawmg_run.IN\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IAER=1111\n++ IAER=1111\n++ export CCPP_SUITE=FV3_GFS_v16_csawmg\n++ CCPP_SUITE=FV3_GFS_v16_csawmg\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfsv16_csawmg_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_10 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmgt \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfsv16_csawmgt\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmgt \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- cheyenne.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmgt \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmgt \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmgt \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfsv16_csawmgt ]]\n+ [[ false == true ]]\n+ [[ - cheyenne.intel != \'\' ]]\n+ [[ - cheyenne.intel == -* ]]\n+ [[ - cheyenne.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 51\n+ TEST_NR=051\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfsv16_csawmgt\n++ export \'TEST_DESCR=Compare FV3 CCPP v16_csawmgt results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP v16_csawmgt results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfsv16_csawmgt\n++ CNTL_DIR=fv3_gfsv16_csawmgt\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=600\n++ export INPUT_NML=ccpp_gfsv16_csawmg.nml.IN\n++ INPUT_NML=ccpp_gfsv16_csawmg.nml.IN\n++ export FV3_RUN=ccpp_gfsv16_csawmg_run.IN\n++ FV3_RUN=ccpp_gfsv16_csawmg_run.IN\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IAER=111\n++ IAER=111\n++ export CCPP_SUITE=FV3_GFS_v16_csawmg\n++ CCPP_SUITE=FV3_GFS_v16_csawmg\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfsv16_csawmgt_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_10 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_11\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP,FV3_GFS_V16_FLAKE =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP,FV3_GFS_V16_FLAKE =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP,FV3_GFS_V16_FLAKE =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gocart_clm | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gocart_clm | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gocart_clm | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gocart_clm | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gocart_clm \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gocart_clm\n++ echo RUN \'|\' fv3_ccpp_gocart_clm \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gocart_clm \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gocart_clm \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gocart_clm \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gocart_clm ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 52\n+ TEST_NR=052\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gocart_clm\n++ export \'TEST_DESCR=Compare FV3 CCPP gocart_clm results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP gocart_clm results with previous trunk version\'\n++ export CNTL_DIR=fv3_gocart_clm\n++ CNTL_DIR=fv3_gocart_clm\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IAER=1111\n++ IAER=1111\n++ export HYBEDMF=.true.\n++ HYBEDMF=.true.\n++ export SATMEDMF=.false.\n++ SATMEDMF=.false.\n++ export FV3_RUN=ccpp_gocart.IN\n++ FV3_RUN=ccpp_gocart.IN\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp.gocart.nml.IN\n++ INPUT_NML=ccpp.gocart.nml.IN\n++ [[ hera.intel = cheyenne.* ]]\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gocart_clm_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_11 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_flake | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_flake | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_flake | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_flake | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_flake\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_flake ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 53\n+ TEST_NR=053\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_flake\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFS v16 flake results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFS v16 flake results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16_flake\n++ CNTL_DIR=fv3_gfs_v16_flake\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export FV3_RUN=ccpp_gfs_v16_flake_run.IN\n++ FV3_RUN=ccpp_gfs_v16_flake_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_flake\n++ CCPP_SUITE=FV3_GFS_v16_flake\n++ export INPUT_NML=ccpp_v16_flake_c96.nml.IN\n++ INPUT_NML=ccpp_v16_flake_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_flake_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_11 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_12\'\n+ echo \' label build_options \'\\\'\'SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 =~ WW3=Y ]]\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_HAFS_v0_hwrf_thompson\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_HAFS_v0_hwrf_thompson ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 54\n+ TEST_NR=054\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson\n++ export \'TEST_DESCR=Compare HAFS 32bit CCPP HWRF suite results with previous trunk version\'\n++ TEST_DESCR=\'Compare HAFS 32bit CCPP HWRF suite results with previous trunk version\'\n++ export CNTL_DIR=HAFS_v0_HWRF_thompson\n++ CNTL_DIR=HAFS_v0_HWRF_thompson\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n+++ expr 150 / 40 + 1\n++ export NODES=4\n++ NODES=4\n++ DT_ATMOS=600\n++ export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN\n++ FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN\n++ export CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN\n++ INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.F.\n++ LTAEROSOL=.F.\n++ export NWAT=6\n++ NWAT=6\n++ export EFFR_IN=.T.\n++ EFFR_IN=.T.\n++ export HURR_PBL=.T.\n++ HURR_PBL=.T.\n++ export MONINQFAC=-1.0\n++ MONINQFAC=-1.0\n++ export ICLOUD=3\n++ ICLOUD=3\n++ export IOVR=4\n++ IOVR=4\n++ export LSM=4\n++ LSM=4\n++ export SFC_Z0_TYPE=4\n++ SFC_Z0_TYPE=4\n++ export HWRF_SAMFDEEP=.T.\n++ HWRF_SAMFDEEP=.T.\n++ export HWRF_SAMFSHAL=.T.\n++ HWRF_SAMFSHAL=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_HAFS_v0_hwrf_thompson_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_12 == complete\'\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_esg_HAFS_v0_hwrf_thompson\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 55\n+ TEST_NR=055\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson\n++ export \'TEST_DESCR=Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ TEST_DESCR=\'Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ export CNTL_DIR=ESG_HAFS_v0_HWRF_thompson\n++ CNTL_DIR=ESG_HAFS_v0_HWRF_thompson\n++ export \'LIST_FILES=atmos_4xdaily.nc phyf000.nc phyf012.nc dynf000.nc dynf012.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_tracer.res.tile1.nc RESTART/sfc_data.nc RESTART/phy_data.nc\'\n++ LIST_FILES=\'atmos_4xdaily.nc phyf000.nc phyf012.nc dynf000.nc dynf012.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_tracer.res.tile1.nc RESTART/sfc_data.nc RESTART/phy_data.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=80\n++ TASKS=80\n+++ expr 80 / 40 + 1\n++ export NODES=3\n++ NODES=3\n++ export FHMAX=12\n++ FHMAX=12\n++ export FDIAG=3\n++ FDIAG=3\n++ DT_ATMOS=300\n++ export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN\n++ FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN\n++ export CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN\n++ INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN\n++ export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN\n++ MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export NWAT=6\n++ NWAT=6\n++ export EFFR_IN=.T.\n++ EFFR_IN=.T.\n++ export HURR_PBL=.T.\n++ HURR_PBL=.T.\n++ export MONINQFAC=-1.0\n++ MONINQFAC=-1.0\n++ export ICLOUD=3\n++ ICLOUD=3\n++ export IOVR=4\n++ IOVR=4\n++ export LSM=4\n++ LSM=4\n++ export SFC_Z0_TYPE=4\n++ SFC_Z0_TYPE=4\n++ export HWRF_SAMFDEEP=.T.\n++ HWRF_SAMFDEEP=.T.\n++ export HWRF_SAMFSHAL=.T.\n++ HWRF_SAMFSHAL=.T.\n+ NODES=2\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_12 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfsv16_ugwpv1\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfsv16_ugwpv1 ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 56\n+ TEST_NR=056\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfsv16_ugwpv1\n++ export \'TEST_DESCR=Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version\'\n++ TEST_DESCR=\'Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version\'\n++ export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1\n++ CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1\n++ export \'LIST_FILES=phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export SYEAR=2019\n++ SYEAR=2019\n++ export SMONTH=07\n++ SMONTH=07\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ DT_ATMOS=600\n++ export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ export CCPP_LIB_DIR=ccpp/lib\n++ CCPP_LIB_DIR=ccpp/lib\n++ export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfsv16_ugwpv1_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_12 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_warmstart \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfsv16_ugwpv1_warmstart\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_warmstart \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_warmstart \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_warmstart \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_warmstart \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfsv16_ugwpv1_warmstart ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 57\n+ TEST_NR=057\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart\n++ export \'TEST_DESCR=Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version\'\n++ TEST_DESCR=\'Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version\'\n++ export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_warmstart\n++ CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_warmstart\n++ export \'LIST_FILES=phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export SYEAR=2019\n++ SYEAR=2019\n++ export SMONTH=07\n++ SMONTH=07\n++ export SDAY=02\n++ SDAY=02\n++ export SHOUR=00\n++ SHOUR=00\n++ DT_ATMOS=600\n++ export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ export CCPP_LIB_DIR=ccpp/lib\n++ CCPP_LIB_DIR=ccpp/lib\n++ export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ export WLCLK=30\n++ WLCLK=30\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfsv16_ugwpv1_warmstart_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_12 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# DEBUG tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # DEBUG tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode)\'\n+ [[ 115 == 0 ]]\n+ [[ # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3\'\n+ [[ 168 == 0 ]]\n+ [[ # Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | == \\#* ]]\n+ [[ COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' DEBUG=Y \'|\' - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=DEBUG=Y\n++ echo COMPILE \'|\' DEBUG=Y \'|\' - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3\'\n++ echo COMPILE \'|\' DEBUG=Y \'|\' - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 != \'\' ]]\n+ [[ - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 == -* ]]\n+ [[ - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_13\'\n+ echo \' label build_options \'\\\'\'DEBUG=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ DEBUG=Y =~ WW3=Y ]]\n+ [[ DEBUG=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ DEBUG=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | == \\#* ]]\n+ [[ COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP \'|\' + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP\'\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP \'|\' + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'+ gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3\'\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP \'|\' + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 != \'\' ]]\n+ [[ + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 == -* ]]\n+ [[ + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 == +* ]]\n+ [[ + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 =~ hera.intel ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v15p2_debug\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v15p2_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 58\n+ TEST_NR=058\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v15p2_debug\n++ export \'TEST_DESCR=Run FV3 32bit CCPP GFS v15.2 in DEBUG mode\'\n++ TEST_DESCR=\'Run FV3 32bit CCPP GFS v15.2 in DEBUG mode\'\n++ export CNTL_DIR=fv3_gfs_v15p2_debug\n++ CNTL_DIR=fv3_gfs_v15p2_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=06\n++ FHMAX=06\n++ DT_ATMOS=1200\n++ export FV3_RUN=ccpp_gfs_v15_run.IN\n++ FV3_RUN=ccpp_gfs_v15_run.IN\n++ export CCPP_SUITE=FV3_GFS_v15p2\n++ CCPP_SUITE=FV3_GFS_v15p2\n++ export INPUT_NML=ccpp_v15p2_c96.nml.IN\n++ INPUT_NML=ccpp_v15p2_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v15p2_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_13 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_debug | | fv3 | == RUN* ]]\n++ cut \'-d|\' -f2\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_debug \'|\' \'|\' fv3 \'|\'\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_debug\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 59\n+ TEST_NR=059\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_debug\n++ export \'TEST_DESCR=Run FV3 32bit CCPP GFS v16 in DEBUG mode\'\n++ TEST_DESCR=\'Run FV3 32bit CCPP GFS v16 in DEBUG mode\'\n++ export CNTL_DIR=fv3_gfs_v16_debug\n++ CNTL_DIR=fv3_gfs_v16_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=06\n++ FHMAX=06\n++ DT_ATMOS=1200\n++ export NSTF_NAME=2,1,0,0,0\n++ NSTF_NAME=2,1,0,0,0\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16\n++ CCPP_SUITE=FV3_GFS_v16\n++ export INPUT_NML=ccpp_v16_c96.nml.IN\n++ INPUT_NML=ccpp_v16_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_13 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v15p2_RRTMGP_debug\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 60\n+ TEST_NR=060\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug\n++ export \'TEST_DESCR=Run FV3 CCPP GFS v15.2 w/ RRTMGP in DEBUG mode\'\n++ TEST_DESCR=\'Run FV3 CCPP GFS v15.2 w/ RRTMGP in DEBUG mode\'\n++ export CNTL_DIR=fv3_gfs_v15p2_RRTMGP_debug\n++ CNTL_DIR=fv3_gfs_v15p2_RRTMGP_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=06\n++ FHMAX=06\n++ DT_ATMOS=1200\n++ export DO_RRTMGP=.T.\n++ DO_RRTMGP=.T.\n++ export FV3_RUN=ccpp_gfs_v15_run.IN\n++ FV3_RUN=ccpp_gfs_v15_run.IN\n++ export CCPP_SUITE=FV3_GFS_v15p2_RRTMGP\n++ CCPP_SUITE=FV3_GFS_v15p2_RRTMGP\n++ export INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN\n++ INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_13 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_RRTMGP_debug\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_RRTMGP_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 61\n+ TEST_NR=061\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug\n++ export \'TEST_DESCR=Run FV3 CCPP GFS v16 w/ RRTMGP in DEBUG mode\'\n++ TEST_DESCR=\'Run FV3 CCPP GFS v16 w/ RRTMGP in DEBUG mode\'\n++ export CNTL_DIR=fv3_gfs_v16_RRTMGP_debug\n++ CNTL_DIR=fv3_gfs_v16_RRTMGP_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=06\n++ FHMAX=06\n++ DT_ATMOS=1200\n++ export DO_RRTMGP=.T.\n++ DO_RRTMGP=.T.\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN\n++ INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_RRTMGP_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_13 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_14\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN,FV3_GFS_2017,FV3_GFS_2017_STRETCHED,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RRFS_V1BETA 32BIT=Y DEBUG=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN,FV3_GFS_2017,FV3_GFS_2017_STRETCHED,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RRFS_V1BETA 32BIT=Y DEBUG=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN,FV3_GFS_2017,FV3_GFS_2017_STRETCHED,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RRFS_V1BETA 32BIT=Y DEBUG=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_regional_control_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_regional_control_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_regional_control_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_regional_control_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_regional_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_regional_control_debug\n++ echo RUN \'|\' fv3_ccpp_regional_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_regional_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_regional_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_regional_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_regional_control_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 62\n+ TEST_NR=062\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_regional_control_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP regional control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP regional control results with previous trunk version\'\n++ export CNTL_DIR=fv3_regional_control_debug\n++ CNTL_DIR=fv3_regional_control_debug\n++ export \'LIST_FILES= atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc RESTART/fv_core.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc\'\n++ LIST_FILES=\' atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc RESTART/fv_core.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=40\n++ TASKS=40\n++ export FHMAX=01\n++ FHMAX=01\n++ export FV3_RUN=ccpp_regional_run.IN\n++ FV3_RUN=ccpp_regional_run.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export H2O_PHYS=.T.\n++ H2O_PHYS=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ export INPUT_NML=ccpp_regional.nml.IN\n++ INPUT_NML=ccpp_regional.nml.IN\n++ export FDIAG=1\n++ FDIAG=1\n++ export INPES=5\n++ INPES=5\n++ export JNPES=8\n++ JNPES=8\n++ export WRITE_RESTART_WITH_BCS=.true.\n++ WRITE_RESTART_WITH_BCS=.true.\n+ NODES=1\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_regional_control_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_control_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_control_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_control_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_control_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_control_debug\n++ echo RUN \'|\' fv3_ccpp_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_control_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 63\n+ TEST_NR=063\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_control_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_control_debug\n++ CNTL_DIR=fv3_control_debug\n++ export \'LIST_FILES=phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc\'\n++ LIST_FILES=\'phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=06\n++ FHMAX=06\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_control_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_stretched_nest_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_stretched_nest_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_stretched_nest_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_stretched_nest_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_stretched_nest_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_stretched_nest_debug\n++ echo RUN \'|\' fv3_ccpp_stretched_nest_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_stretched_nest_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_stretched_nest_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_stretched_nest_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_stretched_nest_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 64\n+ TEST_NR=064\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_stretched_nest_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_stretched_nest_debug\n++ CNTL_DIR=fv3_stretched_nest_debug\n++ export \'LIST_FILES=fv3_history2d.nest02.tile7.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history.nest02.tile7.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc\'\n++ LIST_FILES=\'fv3_history2d.nest02.tile7.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history.nest02.tile7.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ INPES=2\n++ JNPES=4\n++ TPN=12\n++ TASKS=96\n++ export INPES_NEST=6\n++ INPES_NEST=6\n++ export JNPES_NEST=8\n++ JNPES_NEST=8\n++ export MAKE_NH_NEST=.F.\n++ MAKE_NH_NEST=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export FDIAG=3\n++ FDIAG=3\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export SYEAR=2018\n++ SYEAR=2018\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=15\n++ SDAY=15\n++ export SHOUR=00\n++ SHOUR=00\n++ export FHMAX=03\n++ FHMAX=03\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ QUILTING=.false.\n++ export WLCLK=30\n++ WLCLK=30\n++ export INPUT_NML=ccpp_stretched-nest-input.nml.IN\n++ INPUT_NML=ccpp_stretched-nest-input.nml.IN\n++ export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN\n++ INPUT_NEST02_NML=ccpp_input_nest02.nml.IN\n++ export FV3_RUN=ccpp_stretched_run.IN\n++ FV3_RUN=ccpp_stretched_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_stretched\n++ CCPP_SUITE=FV3_GFS_2017_stretched\n+ NODES=8\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_stretched_nest_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gsd_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gsd_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gsd_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gsd_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gsd_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gsd_debug\n++ echo RUN \'|\' fv3_ccpp_gsd_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gsd_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gsd_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gsd_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gsd_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 65\n+ TEST_NR=065\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gsd_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP GSD DEBUG results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GSD DEBUG results with previous trunk version\'\n++ export CNTL_DIR=fv3_gsd_debug\n++ CNTL_DIR=fv3_gsd_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=3\n++ FHMAX=3\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GSD_v0\n++ CCPP_SUITE=FV3_GSD_v0\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export IMFSHALCNV=3\n++ IMFSHALCNV=3\n++ export IMFDEEPCNV=3\n++ IMFDEEPCNV=3\n++ export LSM=3\n++ LSM=3\n++ export LSOIL_LSM=9\n++ LSOIL_LSM=9\n++ export KICE=9\n++ KICE=9\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gsd_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gsd_diag3d_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gsd_diag3d_debug\n++ echo RUN \'|\' fv3_ccpp_gsd_diag3d_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gsd_diag3d_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gsd_diag3d_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gsd_diag3d_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gsd_diag3d_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 66\n+ TEST_NR=066\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gsd_diag3d_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP GSD 3d tendencies debug results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GSD 3d tendencies debug results with previous trunk version\'\n++ export CNTL_DIR=fv3_gsd_diag3d_debug\n++ CNTL_DIR=fv3_gsd_diag3d_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=3\n++ FHMAX=3\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG3D=.T.\n++ LDIAG3D=.T.\n++ export QDIAG3D=.T.\n++ QDIAG3D=.T.\n++ export MAX_OUTPUT_FIELDS=400\n++ MAX_OUTPUT_FIELDS=400\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GSD_v0\n++ CCPP_SUITE=FV3_GSD_v0\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export IMFSHALCNV=3\n++ IMFSHALCNV=3\n++ export IMFDEEPCNV=3\n++ IMFDEEPCNV=3\n++ export LSM=3\n++ LSM=3\n++ export LSOIL_LSM=9\n++ LSOIL_LSM=9\n++ export KICE=9\n++ KICE=9\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gsd_diag3d_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_thompson_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_thompson_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_thompson_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_thompson_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_thompson_debug\n++ echo RUN \'|\' fv3_ccpp_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_thompson_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 67\n+ TEST_NR=067\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_thompson_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP Thompson MP debug results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Thompson MP debug results with previous trunk version\'\n++ export CNTL_DIR=fv3_thompson_debug\n++ CNTL_DIR=fv3_thompson_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=6\n++ FHMAX=6\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_thompson\n++ CCPP_SUITE=FV3_GFS_v16_thompson\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export IAER=5111\n++ IAER=5111\n++ export ICLIQ_SW=2\n++ ICLIQ_SW=2\n++ export IOVR=3\n++ IOVR=3\n++ export LHEATSTRG=.T.\n++ LHEATSTRG=.T.\n++ export DO_TOFD=.T.\n++ DO_TOFD=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_thompson_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_thompson_no_aero_debug\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_thompson_no_aero_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 68\n+ TEST_NR=068\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_thompson_no_aero_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP Thompson MP without aerosols debug results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Thompson MP without aerosols debug results with previous trunk version\'\n++ export CNTL_DIR=fv3_thompson_no_aero_debug\n++ CNTL_DIR=fv3_thompson_no_aero_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=6\n++ FHMAX=6\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export NSRADAR_RESET=3600.0\n++ NSRADAR_RESET=3600.0\n++ export LTAEROSOL=.F.\n++ LTAEROSOL=.F.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_thompson\n++ CCPP_SUITE=FV3_GFS_v16_thompson\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export IAER=5111\n++ IAER=5111\n++ export ICLIQ_SW=2\n++ ICLIQ_SW=2\n++ export IOVR=3\n++ IOVR=3\n++ export LHEATSTRG=.T.\n++ LHEATSTRG=.T.\n++ export DO_TOFD=.T.\n++ DO_TOFD=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_thompson_no_aero_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_rrfs_v1beta_debug\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_rrfs_v1beta_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 69\n+ TEST_NR=069\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_rrfs_v1beta_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP RRFS_v1beta DEBUG results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP RRFS_v1beta DEBUG results with previous trunk version\'\n++ export CNTL_DIR=fv3_rrfs_v1beta_debug\n++ CNTL_DIR=fv3_rrfs_v1beta_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=3\n++ FHMAX=3\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_RRFS_v1beta\n++ CCPP_SUITE=FV3_RRFS_v1beta\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export IMFSHALCNV=-1\n++ IMFSHALCNV=-1\n++ export IMFDEEPCNV=-1\n++ IMFDEEPCNV=-1\n++ export LSM=2\n++ LSM=2\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export DO_MYNNSFCLAY=.T.\n++ DO_MYNNSFCLAY=.T.\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_rrfs_v1beta_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y\'\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_15\'\n+ echo \' label build_options \'\\\'\'SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 DEBUG=Y =~ WW3=Y ]]\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 DEBUG=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 DEBUG=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_HAFS_v0_hwrf_thompson_debug\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 70\n+ TEST_NR=070\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug\n++ export \'TEST_DESCR=Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ TEST_DESCR=\'Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ export CNTL_DIR=HAFS_v0_HWRF_thompson_debug\n++ CNTL_DIR=HAFS_v0_HWRF_thompson_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n+++ expr 150 / 40 + 1\n++ export NODES=4\n++ NODES=4\n++ export FHMAX=3\n++ FHMAX=3\n++ export FDIAG=3\n++ FDIAG=3\n++ DT_ATMOS=600\n++ export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN\n++ FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN\n++ export CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN\n++ INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.F.\n++ LTAEROSOL=.F.\n++ export NWAT=6\n++ NWAT=6\n++ export EFFR_IN=.T.\n++ EFFR_IN=.T.\n++ export HURR_PBL=.T.\n++ HURR_PBL=.T.\n++ export MONINQFAC=-1.0\n++ MONINQFAC=-1.0\n++ export ICLOUD=3\n++ ICLOUD=3\n++ export IOVR=4\n++ IOVR=4\n++ export LSM=4\n++ LSM=4\n++ export SFC_Z0_TYPE=4\n++ SFC_Z0_TYPE=4\n++ export HWRF_SAMFDEEP=.T.\n++ HWRF_SAMFDEEP=.T.\n++ export HWRF_SAMFSHAL=.T.\n++ HWRF_SAMFSHAL=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_15 == complete\'\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 71\n+ TEST_NR=071\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug\n++ export \'TEST_DESCR=Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ TEST_DESCR=\'Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ export CNTL_DIR=ESG_HAFS_v0_HWRF_thompson_debug\n++ CNTL_DIR=ESG_HAFS_v0_HWRF_thompson_debug\n++ export \'LIST_FILES=atmos_4xdaily.nc phyf000.nc phyf001.nc dynf000.nc dynf001.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_tracer.res.tile1.nc RESTART/sfc_data.nc RESTART/phy_data.nc\'\n++ LIST_FILES=\'atmos_4xdaily.nc phyf000.nc phyf001.nc dynf000.nc dynf001.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_tracer.res.tile1.nc RESTART/sfc_data.nc RESTART/phy_data.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=80\n++ TASKS=80\n+++ expr 80 / 40 + 1\n++ export NODES=3\n++ NODES=3\n++ export FHMAX=1\n++ FHMAX=1\n++ export FDIAG=1\n++ FDIAG=1\n++ DT_ATMOS=300\n++ export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN\n++ FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN\n++ export CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN\n++ INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN\n++ export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN\n++ MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export NWAT=6\n++ NWAT=6\n++ export EFFR_IN=.T.\n++ EFFR_IN=.T.\n++ export HURR_PBL=.T.\n++ HURR_PBL=.T.\n++ export MONINQFAC=-1.0\n++ MONINQFAC=-1.0\n++ export ICLOUD=3\n++ ICLOUD=3\n++ export IOVR=4\n++ IOVR=4\n++ export LSM=4\n++ LSM=4\n++ export SFC_Z0_TYPE=4\n++ SFC_Z0_TYPE=4\n++ export HWRF_SAMFDEEP=.T.\n++ HWRF_SAMFDEEP=.T.\n++ export HWRF_SAMFSHAL=.T.\n++ HWRF_SAMFSHAL=.T.\n+ NODES=2\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_15 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfsv16_ugwpv1_debug\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfsv16_ugwpv1_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 72\n+ TEST_NR=072\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug\n++ export \'TEST_DESCR=Compare fv3_ccpp_gfsv16_ugwpv1 DEBUG with previous trunk version\'\n++ TEST_DESCR=\'Compare fv3_ccpp_gfsv16_ugwpv1 DEBUG with previous trunk version\'\n++ export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_debug\n++ CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_debug\n++ export \'LIST_FILES=phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export SYEAR=2019\n++ SYEAR=2019\n++ export SMONTH=07\n++ SMONTH=07\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ DT_ATMOS=600\n++ export FHMAX=6\n++ FHMAX=6\n++ export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ export CCPP_LIB_DIR=ccpp/lib\n++ CCPP_LIB_DIR=ccpp/lib\n++ export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfsv16_ugwpv1_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_15 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# CPLD tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # CPLD tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_16\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_control | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_control | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_control | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_control | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_control \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_control\n++ echo RUN \'|\' cpld_control \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_control \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_control \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_control \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_control ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 73\n+ TEST_NR=073\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_control\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100\'\n++ export CNTL_DIR=cpld_control\n++ CNTL_DIR=cpld_control\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_control_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control\'\n+ [[ 181 == 0 ]]\n+ [[ RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control == \\#* ]]\n+ [[ RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control == COMPILE* ]]\n+ [[ RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control == RUN* ]]\n++ echo RUN \'|\' cpld_restart \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart\n++ echo RUN \'|\' cpld_restart \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restart \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_control\n++ echo RUN \'|\' cpld_restart \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 74\n+ TEST_NR=074\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart\'\n++ export CNTL_DIR=cpld_control\n++ CNTL_DIR=cpld_control\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_control != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_control_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_controlfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_controlfrac\n++ echo RUN \'|\' cpld_controlfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_controlfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_controlfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_controlfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_controlfrac ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 75\n+ TEST_NR=075\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_controlfrac\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - frac grid\'\n++ export CNTL_DIR=cpld_controlfrac\n++ CNTL_DIR=cpld_controlfrac\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_controlfrac_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac\'\n+ [[ 185 == 0 ]]\n+ [[ RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac == \\#* ]]\n+ [[ RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac == COMPILE* ]]\n+ [[ RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac == RUN* ]]\n++ echo RUN \'|\' cpld_restartfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restartfrac\n++ echo RUN \'|\' cpld_restartfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restartfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restartfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_controlfrac\n++ echo RUN \'|\' cpld_restartfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restartfrac ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 76\n+ TEST_NR=076\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restartfrac\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart - frac grid\'\n++ export CNTL_DIR=cpld_controlfrac\n++ CNTL_DIR=cpld_controlfrac\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restartfrac_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_controlfrac != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_controlfrac_prod == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_2threads | - wcoss_cray jet.intel | |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_2threads | - wcoss_cray jet.intel | | == \\#* ]]\n+ [[ RUN | cpld_2threads | - wcoss_cray jet.intel | | == COMPILE* ]]\n+ [[ RUN | cpld_2threads | - wcoss_cray jet.intel | | == RUN* ]]\n++ echo RUN \'|\' cpld_2threads \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_2threads\n++ echo RUN \'|\' cpld_2threads \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_2threads \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_2threads \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_2threads \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_2threads ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 77\n+ TEST_NR=077\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_2threads\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - 2 threads\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - 2 threads\'\n++ export CNTL_DIR=cpld_control\n++ CNTL_DIR=cpld_control\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=4\n++ JNPES=4\n++ export THRD=2\n++ THRD=2\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 77\'\n++ med_petlist_bounds=\'0 77\'\n++ export \'atm_petlist_bounds=0 77\'\n++ atm_petlist_bounds=\'0 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_2threads_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_decomp | - wcoss_cray jet.intel | |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_decomp | - wcoss_cray jet.intel | | == \\#* ]]\n+ [[ RUN | cpld_decomp | - wcoss_cray jet.intel | | == COMPILE* ]]\n+ [[ RUN | cpld_decomp | - wcoss_cray jet.intel | | == RUN* ]]\n++ echo RUN \'|\' cpld_decomp \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_decomp\n++ cut \'-d|\' -f3\n++ echo RUN \'|\' cpld_decomp \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_decomp \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_decomp \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_decomp \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_decomp ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 78\n+ TEST_NR=078\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_decomp\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - decomp\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - decomp\'\n++ export CNTL_DIR=cpld_control\n++ CNTL_DIR=cpld_control\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export INPES=6\n++ INPES=6\n++ export JNPES=4\n++ JNPES=4\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_decomp_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_satmedmf \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_satmedmf\n++ echo RUN \'|\' cpld_satmedmf \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_satmedmf \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_satmedmf \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_satmedmf \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_satmedmf ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 79\n+ TEST_NR=079\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_satmedmf\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - satmedmf\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - satmedmf\'\n++ export CNTL_DIR=cpld_satmedmf\n++ CNTL_DIR=cpld_satmedmf\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SATMEDMF=.true.\n++ SATMEDMF=.true.\n++ export HYBEDMF=.false.\n++ HYBEDMF=.false.\n++ export FIELD_TABLE=field_table_satmedmf\n++ FIELD_TABLE=field_table_satmedmf\n++ export SUITE_NAME=FV3_GFS_2017_satmedmf_coupled\n++ SUITE_NAME=FV3_GFS_2017_satmedmf_coupled\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_satmedmf_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_ca | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_ca \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_ca\n++ echo RUN \'|\' cpld_ca \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_ca \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_ca \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_ca \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_ca ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 80\n+ TEST_NR=080\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_ca\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 CA\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 CA\'\n++ export CNTL_DIR=cpld_ca\n++ CNTL_DIR=cpld_ca\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DO_CA=.T.\n++ DO_CA=.T.\n++ export CA_SGS=.T.\n++ CA_SGS=.T.\n++ export CA_GLOBAL=.T.\n++ CA_GLOBAL=.T.\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_ca_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'#12h/36h/48h restart tests\'\n+ [[ 26 == 0 ]]\n+ [[ #12h/36h/48h restart tests == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_control_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_control_c192\n++ echo RUN \'|\' cpld_control_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_control_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_control_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_control_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_control_c192 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 81\n+ TEST_NR=081\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_control_c192\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050\'\n++ export CNTL_DIR=cpld_control_c192\n++ CNTL_DIR=cpld_control_c192\n++ export \'LIST_FILES=phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ LIST_FILES=\'phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=2\n++ DAYS=2\n++ export FHMAX=48\n++ FHMAX=48\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export TASKS=288\n++ TASKS=288\n++ export TPN=40\n++ TPN=40\n++ export INPES=4\n++ INPES=4\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export \'med_petlist_bounds=0 191\'\n++ med_petlist_bounds=\'0 191\'\n++ export \'atm_petlist_bounds=0 203\'\n++ atm_petlist_bounds=\'0 203\'\n++ export \'ocn_petlist_bounds=204 263\'\n++ ocn_petlist_bounds=\'204 263\'\n++ export \'ice_petlist_bounds=264 287\'\n++ ice_petlist_bounds=\'264 287\'\n++ export ATMRES=C192\n++ ATMRES=C192\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export OCNRES=050\n++ OCNRES=050\n++ export ICERES=0.50\n++ ICERES=0.50\n++ export NX_GLB=720\n++ NX_GLB=720\n++ export NY_GLB=576\n++ NY_GLB=576\n++ export NPROC_ICE=24\n++ NPROC_ICE=24\n++ export CDMBWD=0.23,1.5,1.0,1.0\n++ CDMBWD=0.23,1.5,1.0,1.0\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export MOM_INPUT=MOM_input_template_050\n++ MOM_INPUT=MOM_input_template_050\n++ export MESHOCN_ICE=mesh.mx050.nc\n++ MESHOCN_ICE=mesh.mx050.nc\n++ export CICEGRID=grid_cice_NEMS_mx050.nc\n++ CICEGRID=grid_cice_NEMS_mx050.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_control_c192_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192\'\n+ [[ 186 == 0 ]]\n+ [[ RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 == \\#* ]]\n+ [[ RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 == COMPILE* ]]\n+ [[ RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 == RUN* ]]\n++ echo RUN \'|\' cpld_restart_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c192\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart_c192\n++ echo RUN \'|\' cpld_restart_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c192\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restart_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c192\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c192\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_control_c192\n++ echo RUN \'|\' cpld_restart_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c192\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart_c192 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 82\n+ TEST_NR=082\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart_c192\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart\'\n++ export CNTL_DIR=cpld_control_c192\n++ CNTL_DIR=cpld_control_c192\n++ export \'LIST_FILES=phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ LIST_FILES=\'phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=2\n++ DAYS=2\n++ export FHMAX=48\n++ FHMAX=48\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=36\n++ RESTART_N=36\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ export TASKS=288\n++ TASKS=288\n++ export TPN=40\n++ TPN=40\n++ export INPES=4\n++ INPES=4\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export \'med_petlist_bounds=0 191\'\n++ med_petlist_bounds=\'0 191\'\n++ export \'atm_petlist_bounds=0 203\'\n++ atm_petlist_bounds=\'0 203\'\n++ export \'ocn_petlist_bounds=204 263\'\n++ ocn_petlist_bounds=\'204 263\'\n++ export \'ice_petlist_bounds=264 287\'\n++ ice_petlist_bounds=\'264 287\'\n++ export ATMRES=C192\n++ ATMRES=C192\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export OCNRES=050\n++ OCNRES=050\n++ export ICERES=0.50\n++ ICERES=0.50\n++ export NX_GLB=720\n++ NX_GLB=720\n++ export NY_GLB=576\n++ NY_GLB=576\n++ export NPROC_ICE=24\n++ NPROC_ICE=24\n++ export CDMBWD=0.23,1.5,1.0,1.0\n++ CDMBWD=0.23,1.5,1.0,1.0\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export MOM_INPUT=MOM_input_template_050\n++ MOM_INPUT=MOM_input_template_050\n++ export MESHOCN_ICE=mesh.mx050.nc\n++ MESHOCN_ICE=mesh.mx050.nc\n++ export CICEGRID=grid_cice_NEMS_mx050.nc\n++ CICEGRID=grid_cice_NEMS_mx050.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_c192_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_control_c192 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_control_c192_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_controlfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_controlfrac_c192\n++ echo RUN \'|\' cpld_controlfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_controlfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_controlfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_controlfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_controlfrac_c192 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 83\n+ TEST_NR=083\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_controlfrac_c192\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - frac grid\'\n++ export CNTL_DIR=cpld_controlfrac_c192\n++ CNTL_DIR=cpld_controlfrac_c192\n++ export \'LIST_FILES=phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ LIST_FILES=\'phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=2\n++ DAYS=2\n++ export FHMAX=48\n++ FHMAX=48\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export TASKS=288\n++ TASKS=288\n++ export TPN=40\n++ TPN=40\n++ export INPES=4\n++ INPES=4\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export \'med_petlist_bounds=0 191\'\n++ med_petlist_bounds=\'0 191\'\n++ export \'atm_petlist_bounds=0 203\'\n++ atm_petlist_bounds=\'0 203\'\n++ export \'ocn_petlist_bounds=204 263\'\n++ ocn_petlist_bounds=\'204 263\'\n++ export \'ice_petlist_bounds=264 287\'\n++ ice_petlist_bounds=\'264 287\'\n++ export ATMRES=C192\n++ ATMRES=C192\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export OCNRES=050\n++ OCNRES=050\n++ export ICERES=0.50\n++ ICERES=0.50\n++ export NX_GLB=720\n++ NX_GLB=720\n++ export NY_GLB=576\n++ NY_GLB=576\n++ export NPROC_ICE=24\n++ NPROC_ICE=24\n++ export CDMBWD=0.23,1.5,1.0,1.0\n++ CDMBWD=0.23,1.5,1.0,1.0\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_050\n++ MOM_INPUT=MOM_input_template_050\n++ export MESHOCN_ICE=mesh.mx050.nc\n++ MESHOCN_ICE=mesh.mx050.nc\n++ export CICEGRID=grid_cice_NEMS_mx050.nc\n++ CICEGRID=grid_cice_NEMS_mx050.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_controlfrac_c192_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192\'\n+ [[ 190 == 0 ]]\n+ [[ RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 == \\#* ]]\n+ [[ RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 == COMPILE* ]]\n+ [[ RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 == RUN* ]]\n++ echo RUN \'|\' cpld_restartfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c192\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restartfrac_c192\n++ echo RUN \'|\' cpld_restartfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c192\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restartfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c192\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restartfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c192\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_controlfrac_c192\n++ echo RUN \'|\' cpld_restartfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c192\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restartfrac_c192 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 84\n+ TEST_NR=084\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restartfrac_c192\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart - frac grid\'\n++ export CNTL_DIR=cpld_controlfrac_c192\n++ CNTL_DIR=cpld_controlfrac_c192\n++ export \'LIST_FILES=phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ LIST_FILES=\'phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=2\n++ DAYS=2\n++ export FHMAX=48\n++ FHMAX=48\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=36\n++ RESTART_N=36\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ export TASKS=288\n++ TASKS=288\n++ export TPN=40\n++ TPN=40\n++ export INPES=4\n++ INPES=4\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export \'med_petlist_bounds=0 191\'\n++ med_petlist_bounds=\'0 191\'\n++ export \'atm_petlist_bounds=0 203\'\n++ atm_petlist_bounds=\'0 203\'\n++ export \'ocn_petlist_bounds=204 263\'\n++ ocn_petlist_bounds=\'204 263\'\n++ export \'ice_petlist_bounds=264 287\'\n++ ice_petlist_bounds=\'264 287\'\n++ export ATMRES=C192\n++ ATMRES=C192\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export OCNRES=050\n++ OCNRES=050\n++ export ICERES=0.50\n++ ICERES=0.50\n++ export NX_GLB=720\n++ NX_GLB=720\n++ export NY_GLB=576\n++ NY_GLB=576\n++ export NPROC_ICE=24\n++ NPROC_ICE=24\n++ export CDMBWD=0.23,1.5,1.0,1.0\n++ CDMBWD=0.23,1.5,1.0,1.0\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_050\n++ MOM_INPUT=MOM_input_template_050\n++ export MESHOCN_ICE=mesh.mx050.nc\n++ MESHOCN_ICE=mesh.mx050.nc\n++ export CICEGRID=grid_cice_NEMS_mx050.nc\n++ CICEGRID=grid_cice_NEMS_mx050.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restartfrac_c192_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_controlfrac_c192 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_controlfrac_c192_prod == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_control_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_control_c384\n++ echo RUN \'|\' cpld_control_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_control_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_control_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_control_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_control_c384 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 85\n+ TEST_NR=085\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_control_c384\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025\'\n++ export CNTL_DIR=cpld_control_c384\n++ CNTL_DIR=cpld_control_c384\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export TASKS=318\n++ TASKS=318\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 269\'\n++ ocn_petlist_bounds=\'150 269\'\n++ export \'ice_petlist_bounds=270 317\'\n++ ice_petlist_bounds=\'270 317\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_control_c384_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384\'\n+ [[ 186 == 0 ]]\n+ [[ RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 == \\#* ]]\n+ [[ RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 == COMPILE* ]]\n+ [[ RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 == RUN* ]]\n++ echo RUN \'|\' cpld_restart_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c384\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart_c384\n++ echo RUN \'|\' cpld_restart_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c384\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restart_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c384\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c384\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_control_c384\n++ echo RUN \'|\' cpld_restart_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c384\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart_c384 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 86\n+ TEST_NR=086\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart_c384\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart\'\n++ export CNTL_DIR=cpld_control_c384\n++ CNTL_DIR=cpld_control_c384\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ export TASKS=318\n++ TASKS=318\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 269\'\n++ ocn_petlist_bounds=\'150 269\'\n++ export \'ice_petlist_bounds=270 317\'\n++ ice_petlist_bounds=\'270 317\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_c384_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_control_c384 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_control_c384_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_controlfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_controlfrac_c384\n++ echo RUN \'|\' cpld_controlfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_controlfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_controlfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_controlfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_controlfrac_c384 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 87\n+ TEST_NR=087\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_controlfrac_c384\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - frac grid \'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - frac grid \'\n++ export CNTL_DIR=cpld_controlfrac_c384\n++ CNTL_DIR=cpld_controlfrac_c384\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export TASKS=318\n++ TASKS=318\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 269\'\n++ ocn_petlist_bounds=\'150 269\'\n++ export \'ice_petlist_bounds=270 317\'\n++ ice_petlist_bounds=\'270 317\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_controlfrac_c384_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384\'\n+ [[ 190 == 0 ]]\n+ [[ RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 == \\#* ]]\n+ [[ RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 == COMPILE* ]]\n+ [[ RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 == RUN* ]]\n++ echo RUN \'|\' cpld_restartfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c384\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restartfrac_c384\n++ echo RUN \'|\' cpld_restartfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c384\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restartfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c384\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restartfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c384\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_controlfrac_c384\n++ echo RUN \'|\' cpld_restartfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c384\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restartfrac_c384 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 88\n+ TEST_NR=088\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restartfrac_c384\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart - frac grid\'\n++ export CNTL_DIR=cpld_controlfrac_c384\n++ CNTL_DIR=cpld_controlfrac_c384\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ export TASKS=318\n++ TASKS=318\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 269\'\n++ ocn_petlist_bounds=\'150 269\'\n++ export \'ice_petlist_bounds=270 317\'\n++ ice_petlist_bounds=\'270 317\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restartfrac_c384_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_controlfrac_c384 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_controlfrac_c384_prod == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmark \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmark\n++ echo RUN \'|\' cpld_bmark \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_bmark \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmark \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmark \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmark ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 89\n+ TEST_NR=089\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmark\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test\'\n++ export CNTL_DIR=cpld_bmark\n++ CNTL_DIR=cpld_bmark\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmark_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark == \\#* ]]\n+ [[ RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark == COMPILE* ]]\n+ [[ RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark == RUN* ]]\n++ echo RUN \'|\' cpld_restart_bmark \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmark\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart_bmark\n++ echo RUN \'|\' cpld_restart_bmark \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmark\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restart_bmark \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmark\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart_bmark \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmark\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_bmark\n++ echo RUN \'|\' cpld_restart_bmark \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmark\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart_bmark ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 90\n+ TEST_NR=090\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart_bmark\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart\'\n++ export CNTL_DIR=cpld_bmark\n++ CNTL_DIR=cpld_bmark\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20130401.120000\n++ RESTART_FILE_PREFIX=20130401.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2013-04-01-12\n++ RESTART_FILE_SUFFIX_HRS=2013-04-01-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2013-04-01-43200\n++ RESTART_FILE_SUFFIX_SECS=2013-04-01-43200\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_bmark_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_bmark != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_bmark_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmarkfrac\n++ echo RUN \'|\' cpld_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmarkfrac ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 91\n+ TEST_NR=091\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmarkfrac\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - frac grid\'\n++ export CNTL_DIR=cpld_bmarkfrac\n++ CNTL_DIR=cpld_bmarkfrac\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmarkfrac_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac\'\n+ [[ 183 == 0 ]]\n+ [[ RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac == \\#* ]]\n+ [[ RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac == COMPILE* ]]\n+ [[ RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac == RUN* ]]\n++ echo RUN \'|\' cpld_restart_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmarkfrac\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart_bmarkfrac\n++ echo RUN \'|\' cpld_restart_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmarkfrac\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restart_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmarkfrac\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmarkfrac\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_bmarkfrac\n++ echo RUN \'|\' cpld_restart_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmarkfrac\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart_bmarkfrac ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 92\n+ TEST_NR=092\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart_bmarkfrac\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart - frac grid\'\n++ export CNTL_DIR=cpld_bmarkfrac\n++ CNTL_DIR=cpld_bmarkfrac\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20130401.120000\n++ RESTART_FILE_PREFIX=20130401.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2013-04-01-12\n++ RESTART_FILE_SUFFIX_HRS=2013-04-01-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2013-04-01-43200\n++ RESTART_FILE_SUFFIX_SECS=2013-04-01-43200\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_bmarkfrac_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_bmarkfrac != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_bmarkfrac_prod == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'#6h/6h/12h restart test\'\n+ [[ 23 == 0 ]]\n+ [[ #6h/6h/12h restart test == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# test fails on gaea with esmfpio error\'\n+ [[ 39 == 0 ]]\n+ [[ # test fails on gaea with esmfpio error == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmarkfrac_v16\n++ echo RUN \'|\' cpld_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmarkfrac_v16 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 93\n+ TEST_NR=093\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmarkfrac_v16\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - frac grid - v16\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - frac grid - v16\'\n++ export CNTL_DIR=cpld_bmarkfrac_v16\n++ CNTL_DIR=cpld_bmarkfrac_v16\n++ export \'LIST_FILES=phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ LIST_FILES=\'phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export DAYS=0.5\n++ DAYS=0.5\n++ export FHMAX=12\n++ FHMAX=12\n++ export RESTART_INTERVAL=6\n++ RESTART_INTERVAL=6\n++ export RESTART_N=6\n++ RESTART_N=6\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=300\n++ DT_ATMOS=300\n++ export DT_CICE=300\n++ DT_CICE=300\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=300\n++ CPL_FAST=300\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=300\n++ coupling_interval_fast_sec=300\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export NPZ=127\n++ NPZ=127\n++ export NPZP=128\n++ NPZP=128\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_v16.nml.IN\n++ INPUT_NML=input.benchmark_v16.nml.IN\n++ export FIELD_TABLE=field_table_gfsv16\n++ FIELD_TABLE=field_table_gfsv16\n++ export DIAG_TABLE=diag_table_gfsv16\n++ DIAG_TABLE=diag_table_gfsv16\n++ export SUITE_NAME=FV3_GFS_v16_coupled\n++ SUITE_NAME=FV3_GFS_v16_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmarkfrac_v16_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16\'\n+ [[ 198 == 0 ]]\n+ [[ RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 == \\#* ]]\n+ [[ RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 == COMPILE* ]]\n+ [[ RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 == RUN* ]]\n++ echo RUN \'|\' cpld_restart_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' \'|\' cpld_bmarkfrac_v16\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart_bmarkfrac_v16\n++ echo RUN \'|\' cpld_restart_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' \'|\' cpld_bmarkfrac_v16\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_restart_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' \'|\' cpld_bmarkfrac_v16\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' \'|\' cpld_bmarkfrac_v16\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_bmarkfrac_v16\n++ echo RUN \'|\' cpld_restart_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' \'|\' cpld_bmarkfrac_v16\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart_bmarkfrac_v16 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 94\n+ TEST_NR=094\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart_bmarkfrac_v16\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - restart - frac grid - v16\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - restart - frac grid - v16\'\n++ export CNTL_DIR=cpld_bmarkfrac_v16\n++ CNTL_DIR=cpld_bmarkfrac_v16\n++ export \'LIST_FILES=phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ LIST_FILES=\'phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export DAYS=0.5\n++ DAYS=0.5\n++ export FHMAX=12\n++ FHMAX=12\n++ export FHROT=6\n++ FHROT=6\n++ export RESTART_N=6\n++ RESTART_N=6\n+++ printf %02d 6\n++ export RESTART_FILE_PREFIX=20130401.060000\n++ RESTART_FILE_PREFIX=20130401.060000\n+++ printf %02d 6\n++ export RESTART_FILE_SUFFIX_HRS=2013-04-01-06\n++ RESTART_FILE_SUFFIX_HRS=2013-04-01-06\n+++ printf %02d 21600\n++ export RESTART_FILE_SUFFIX_SECS=2013-04-01-21600\n++ RESTART_FILE_SUFFIX_SECS=2013-04-01-21600\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=300\n++ DT_ATMOS=300\n++ export DT_CICE=300\n++ DT_CICE=300\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=300\n++ CPL_FAST=300\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=300\n++ coupling_interval_fast_sec=300\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export NPZ=127\n++ NPZ=127\n++ export NPZP=128\n++ NPZP=128\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export INPUT_NML=input.benchmark_v16.nml.IN\n++ INPUT_NML=input.benchmark_v16.nml.IN\n++ export FIELD_TABLE=field_table_gfsv16\n++ FIELD_TABLE=field_table_gfsv16\n++ export DIAG_TABLE=diag_table_gfsv16\n++ DIAG_TABLE=diag_table_gfsv16\n++ export SUITE_NAME=FV3_GFS_v16_coupled\n++ SUITE_NAME=FV3_GFS_v16_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_bmarkfrac_v16_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_bmarkfrac_v16 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_bmarkfrac_v16_prod == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_17\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y WW3=Y =~ WW3=Y ]]\n+ [[ 2 != \'\' ]]\n+ echo \' trigger compile_2 == complete\'\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y WW3=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y WW3=Y =~ WW3=Y ]]\n+ COMPILE_PREV_WW3_NR=17\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmark_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmark_wave\n++ echo RUN \'|\' cpld_bmark_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_bmark_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmark_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmark_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmark_wave ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 95\n+ TEST_NR=095\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmark_wave\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves\'\n++ export CNTL_DIR=cpld_bmark_wave\n++ CNTL_DIR=cpld_bmark_wave\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc 20130402.000000.out_grd.gwes_30m 20130402.000000.out_pnt.points 20130402.000000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc 20130402.000000.out_grd.gwes_30m 20130402.000000.out_pnt.points 20130402.000000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export WLCLK=60\n++ WLCLK=60\n++ export TASKS=520\n++ TASKS=520\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export \'wav_petlist_bounds=480 519\'\n++ wav_petlist_bounds=\'480 519\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export CPLWAV2ATM=.T.\n++ CPLWAV2ATM=.T.\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_USE_WAVES=True\n++ MOM6_USE_WAVES=True\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=13\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmark_wave_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_17 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmarkfrac_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmarkfrac_wave\n++ echo RUN \'|\' cpld_bmarkfrac_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_bmarkfrac_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmarkfrac_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmarkfrac_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmarkfrac_wave ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 96\n+ TEST_NR=096\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmarkfrac_wave\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves - frac grid\'\n++ export CNTL_DIR=cpld_bmarkfrac_wave\n++ CNTL_DIR=cpld_bmarkfrac_wave\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc 20130402.000000.out_grd.gwes_30m 20130402.000000.out_pnt.points 20130402.000000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc 20130402.000000.out_grd.gwes_30m 20130402.000000.out_pnt.points 20130402.000000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export WLCLK=60\n++ WLCLK=60\n++ export TASKS=520\n++ TASKS=520\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export \'wav_petlist_bounds=480 519\'\n++ wav_petlist_bounds=\'480 519\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export CPLWAV2ATM=.T.\n++ CPLWAV2ATM=.T.\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_USE_WAVES=True\n++ MOM6_USE_WAVES=True\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=13\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmarkfrac_wave_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_17 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmarkfrac_wave_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmarkfrac_wave_v16\n++ echo RUN \'|\' cpld_bmarkfrac_wave_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_bmarkfrac_wave_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmarkfrac_wave_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmarkfrac_wave_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmarkfrac_wave_v16 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 97\n+ TEST_NR=097\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmarkfrac_wave_v16\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves-frac grid - v16\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves-frac grid - v16\'\n++ export CNTL_DIR=cpld_bmarkfrac_wave_v16\n++ CNTL_DIR=cpld_bmarkfrac_wave_v16\n++ export \'LIST_FILES=phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc 20130401.120000.out_grd.gwes_30m 20130401.120000.out_pnt.points 20130401.120000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ LIST_FILES=\'phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc 20130401.120000.out_grd.gwes_30m 20130401.120000.out_pnt.points 20130401.120000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export DAYS=0.5\n++ DAYS=0.5\n++ export FHMAX=12\n++ FHMAX=12\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export TASKS=520\n++ TASKS=520\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export \'wav_petlist_bounds=480 519\'\n++ wav_petlist_bounds=\'480 519\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=300\n++ DT_ATMOS=300\n++ export DT_CICE=300\n++ DT_CICE=300\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=300\n++ CPL_FAST=300\n++ export NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=300\n++ coupling_interval_fast_sec=300\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export NPZ=127\n++ NPZ=127\n++ export NPZP=128\n++ NPZP=128\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export CPLWAV2ATM=.T.\n++ CPLWAV2ATM=.T.\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_USE_WAVES=True\n++ MOM6_USE_WAVES=True\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_v16.nml.IN\n++ INPUT_NML=input.benchmark_v16.nml.IN\n++ export FIELD_TABLE=field_table_gfsv16\n++ FIELD_TABLE=field_table_gfsv16\n++ export DIAG_TABLE=diag_table_gfsv16\n++ DIAG_TABLE=diag_table_gfsv16\n++ export SUITE_NAME=FV3_GFS_v16_coupled\n++ SUITE_NAME=FV3_GFS_v16_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=13\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmarkfrac_wave_v16_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_17 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_control_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_control_wave\n++ echo RUN \'|\' cpld_control_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_control_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_control_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_control_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_control_wave ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 98\n+ TEST_NR=098\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_control_wave\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 with waves\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 with waves\'\n++ export CNTL_DIR=cpld_control_wave\n++ CNTL_DIR=cpld_control_wave\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc 20161004.000000.out_grd.glo_1deg 20161004.000000.out_pnt.points 20161004.000000.restart.glo_1deg\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc 20161004.000000.out_grd.glo_1deg 20161004.000000.out_pnt.points 20161004.000000.restart.glo_1deg\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export TASKS=204\n++ TASKS=204\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export \'wav_petlist_bounds=192 203\'\n++ wav_petlist_bounds=\'192 203\'\n++ export NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export CPLWAV2ATM=.T.\n++ CPLWAV2ATM=.T.\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=5\n+ (( NODES * TPN < TASKS ))\n+ NODES=6\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_control_wave_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_17 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y\'\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_18\'\n+ echo \' label build_options \'\\\'\'DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ DEBUG=Y SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ WW3=Y ]]\n+ [[ DEBUG=Y SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ DEBUG=Y SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_debug | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_debug \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_debug\n++ echo RUN \'|\' cpld_debug \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_debug \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_debug \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_debug \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_debug ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 99\n+ TEST_NR=099\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_debug\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug\'\n++ export CNTL_DIR=cpld_debug\n++ CNTL_DIR=cpld_debug\n++ export \'LIST_FILES=phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-03-21600.nc RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc\'\n++ LIST_FILES=\'phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-03-21600.nc RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=0.25\n++ DAYS=0.25\n++ export FHMAX=6\n++ FHMAX=6\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export WLCLK=60\n++ WLCLK=60\n++ export RESTART_N=6\n++ RESTART_N=6\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_18 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_debugfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_debugfrac\n++ echo RUN \'|\' cpld_debugfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_debugfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_debugfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_debugfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_debugfrac ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 100\n+ TEST_NR=100\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_debugfrac\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug - frac grid\'\n++ export CNTL_DIR=cpld_debugfrac\n++ CNTL_DIR=cpld_debugfrac\n++ export \'LIST_FILES=phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-03-21600.nc RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc\'\n++ LIST_FILES=\'phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-03-21600.nc RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=0.25\n++ DAYS=0.25\n++ export FHMAX=6\n++ FHMAX=6\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export WLCLK=60\n++ WLCLK=60\n++ export RESTART_N=6\n++ RESTART_N=6\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_debugfrac_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_18 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# Data Atmosphere tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # Data Atmosphere tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' DATM=Y S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'DATM=Y S2S=Y\'\n++ echo COMPILE \'|\' DATM=Y S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo COMPILE \'|\' DATM=Y S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_19\'\n+ echo \' label build_options \'\\\'\'DATM=Y S2S=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ DATM=Y S2S=Y =~ WW3=Y ]]\n+ [[ DATM=Y S2S=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ DATM=Y S2S=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_control_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_control_cfsr\n++ echo RUN \'|\' datm_control_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_control_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_control_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_control_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_control_cfsr ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 101\n+ TEST_NR=101\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_control_cfsr\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_CFSR - control \'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_CFSR - control \'\n++ export CNTL_DIR=datm_control_cfsr\n++ CNTL_DIR=datm_control_cfsr\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export DATM_SRC=CFSR\n++ DATM_SRC=CFSR\n++ export FILENAME_BASE=cfsr.\n++ FILENAME_BASE=cfsr.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export FV3_RUN=cpld_datm_cfsr.IN\n++ FV3_RUN=cpld_datm_cfsr.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_control_cfsr\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr\'\n+ [[ 186 == 0 ]]\n+ [[ RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr == \\#* ]]\n+ [[ RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr == COMPILE* ]]\n+ [[ RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr == RUN* ]]\n++ echo RUN \'|\' datm_restart_cfsr \'|\' - wcoss_cray jet.intel \'|\' \'|\' datm_control_cfsr\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_restart_cfsr\n++ echo RUN \'|\' datm_restart_cfsr \'|\' - wcoss_cray jet.intel \'|\' \'|\' datm_control_cfsr\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_restart_cfsr \'|\' - wcoss_cray jet.intel \'|\' \'|\' datm_control_cfsr\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' datm_restart_cfsr \'|\' - wcoss_cray jet.intel \'|\' \'|\' datm_control_cfsr\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=datm_control_cfsr\n++ echo RUN \'|\' datm_restart_cfsr \'|\' - wcoss_cray jet.intel \'|\' \'|\' datm_control_cfsr\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_restart_cfsr ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 102\n+ TEST_NR=102\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_restart_cfsr\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_CFSR - restart test \'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_CFSR - restart test \'\n++ export CNTL_DIR=datm_control_cfsr\n++ CNTL_DIR=datm_control_cfsr\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export DATM_SRC=CFSR\n++ DATM_SRC=CFSR\n++ export FILENAME_BASE=cfsr.\n++ FILENAME_BASE=cfsr.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FHROT=12\n++ FHROT=12\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export RUNTYPE=continue\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_datm_cfsr.IN\n++ FV3_RUN=cpld_datm_cfsr.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_restart_cfsr\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ datm_control_cfsr != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_19 == complete and datm_control_cfsr == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_control_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_control_gefs\n++ echo RUN \'|\' datm_control_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_control_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_control_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_control_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_control_gefs ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 103\n+ TEST_NR=103\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_control_gefs\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_GEFS - control\'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_GEFS - control\'\n++ export CNTL_DIR=datm_control_gefs\n++ CNTL_DIR=datm_control_gefs\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export FV3_RUN=cpld_datm_gefs.IN\n++ FV3_RUN=cpld_datm_gefs.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_control_gefs\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_bulk_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_bulk_cfsr\n++ echo RUN \'|\' datm_bulk_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_bulk_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_bulk_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_bulk_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_bulk_cfsr ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 104\n+ TEST_NR=104\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_bulk_cfsr\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_CFSR - bulk flux test\'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_CFSR - bulk flux test\'\n++ export CNTL_DIR=datm_bulk_cfsr\n++ CNTL_DIR=datm_bulk_cfsr\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export DATM_SRC=CFSR\n++ DATM_SRC=CFSR\n++ export FILENAME_BASE=cfsr.\n++ FILENAME_BASE=cfsr.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export flux_scheme=-1\n++ flux_scheme=-1\n++ export FV3_RUN=cpld_datm_cfsr.IN\n++ FV3_RUN=cpld_datm_cfsr.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_bulk_cfsr\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_bulk_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_bulk_gefs\n++ echo RUN \'|\' datm_bulk_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_bulk_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_bulk_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_bulk_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_bulk_gefs ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 105\n+ TEST_NR=105\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_bulk_gefs\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_GEFS - bulk flux test\'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_GEFS - bulk flux test\'\n++ export CNTL_DIR=datm_bulk_gefs\n++ CNTL_DIR=datm_bulk_gefs\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export flux_scheme=-1\n++ flux_scheme=-1\n++ export FV3_RUN=cpld_datm_gefs.IN\n++ FV3_RUN=cpld_datm_gefs.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_bulk_gefs\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_mx025_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_mx025_cfsr\n++ echo RUN \'|\' datm_mx025_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_mx025_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_mx025_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_mx025_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_mx025_cfsr ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 106\n+ TEST_NR=106\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_mx025_cfsr\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_CFSR - 1/4deg ocean+ice\'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_CFSR - 1/4deg ocean+ice\'\n++ export CNTL_DIR=datm_mx025_cfsr\n++ CNTL_DIR=datm_mx025_cfsr\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export WLCLK=40\n++ WLCLK=40\n++ export DATM_SRC=CFSR\n++ DATM_SRC=CFSR\n++ export FILENAME_BASE=cfsr.\n++ FILENAME_BASE=cfsr.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export TASKS=208\n++ TASKS=208\n++ export TPN=40\n++ TPN=40\n++ export \'atm_petlist_bounds=0 39\'\n++ atm_petlist_bounds=\'0 39\'\n++ export \'med_petlist_bounds=0 39\'\n++ med_petlist_bounds=\'0 39\'\n++ export \'ocn_petlist_bounds=40 159\'\n++ ocn_petlist_bounds=\'40 159\'\n++ export \'ice_petlist_bounds=160 207\'\n++ ice_petlist_bounds=\'160 207\'\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export \'CHLCLIM="seawifs-clim-1997-2010.1440x1080.v20180328.nc"\'\n++ CHLCLIM=\'"seawifs-clim-1997-2010.1440x1080.v20180328.nc"\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_datm_cfsr.IN\n++ FV3_RUN=cpld_datm_cfsr.IN\n+ NODES=5\n+ (( NODES * TPN < TASKS ))\n+ NODES=6\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_mx025_cfsr\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_mx025_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_mx025_gefs\n++ echo RUN \'|\' datm_mx025_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_mx025_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_mx025_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_mx025_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_mx025_gefs ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 107\n+ TEST_NR=107\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_mx025_gefs\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_GEFS - 1/4deg ocean+ice\'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_GEFS - 1/4deg ocean+ice\'\n++ export CNTL_DIR=datm_mx025_gefs\n++ CNTL_DIR=datm_mx025_gefs\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export WLCLK=40\n++ WLCLK=40\n++ export TASKS=208\n++ TASKS=208\n++ export TPN=40\n++ TPN=40\n++ export \'atm_petlist_bounds=0 39\'\n++ atm_petlist_bounds=\'0 39\'\n++ export \'med_petlist_bounds=0 39\'\n++ med_petlist_bounds=\'0 39\'\n++ export \'ocn_petlist_bounds=40 159\'\n++ ocn_petlist_bounds=\'40 159\'\n++ export \'ice_petlist_bounds=160 207\'\n++ ice_petlist_bounds=\'160 207\'\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export \'CHLCLIM="seawifs-clim-1997-2010.1440x1080.v20180328.nc"\'\n++ CHLCLIM=\'"seawifs-clim-1997-2010.1440x1080.v20180328.nc"\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_datm_gefs.IN\n++ FV3_RUN=cpld_datm_gefs.IN\n+ NODES=5\n+ (( NODES * TPN < TASKS ))\n+ NODES=6\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_mx025_gefs\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' DATM=Y S2S=Y DEBUG=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'DATM=Y S2S=Y DEBUG=Y\'\n++ echo COMPILE \'|\' DATM=Y S2S=Y DEBUG=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo COMPILE \'|\' DATM=Y S2S=Y DEBUG=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_20\'\n+ echo \' label build_options \'\\\'\'DATM=Y S2S=Y DEBUG=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ DATM=Y S2S=Y DEBUG=Y =~ WW3=Y ]]\n+ [[ DATM=Y S2S=Y DEBUG=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ DATM=Y S2S=Y DEBUG=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_debug_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_debug_cfsr\n++ echo RUN \'|\' datm_debug_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_debug_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_debug_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_debug_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_debug_cfsr ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 108\n+ TEST_NR=108\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_debug_cfsr\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_CFSR - debug test \'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_CFSR - debug test \'\n++ export CNTL_DIR=datm_debug_cfsr\n++ CNTL_DIR=datm_debug_cfsr\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-01-21600.nc RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-01-21600.nc RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export DATM_SRC=CFSR\n++ DATM_SRC=CFSR\n++ export FILENAME_BASE=cfsr.\n++ FILENAME_BASE=cfsr.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export DAYS=0.25\n++ DAYS=0.25\n++ export FHMAX=6\n++ FHMAX=6\n++ export RESTART_N=6\n++ RESTART_N=6\n++ export FV3_RUN=cpld_datm_cfsr.IN\n++ FV3_RUN=cpld_datm_cfsr.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_debug_cfsr\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_20 == complete\'\n+ continue\n+ read -r line\n+ \'[\' \'\' \']\'\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ echo endsuite\n+ ecflow_run\n+ [[ 22097 -gt 49151 ]]\n++ hostname\n+ ECF_HOST=hfe03\n+ set +e\n+ ecflow_client --ping --host=hfe03 --port=22097\n[03:19:47 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n+ not_running=1\n+ [[ 1 -eq 1 ]]\n+ echo \'ecflow_server is NOT running on hfe03:22097\'\necflow_server is NOT running on hfe03:22097\n+ sh /scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh -p 22097\n[03:19:48 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\nTue Feb 23 03:19:48 UTC 2021\n\nUser "20597" attempting to start ecf server on "hfe03" using ECF_PORT "22097" and with:\nECF_HOME : "/home/Brian.Curtis/ecflow_server"\nECF_LOG : "hfe03.22097.ecf.log"\nECF_CHECK : "hfe03.22097.check"\nECF_CHECKOLD : "hfe03.22097.check.b"\nECF_OUT : "/dev/null"\n\nclient version is Ecflow version(5.6.0) boost(1.74.0) compiler(gcc 7.5.0) protocol(JSON cereal 1.3.0) Compiled on Nov 26 2020 15:50:45\nChecking if the server is already running on hfe03 and port 22097\n[03:19:49 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n\nBacking up check point and log files\n\nOK starting ecFlow server...\n\nPlacing server into RESTART mode...\n\nTo view server on ecflow_ui - goto Servers/Manage Servers... and enter\nName : \nHost : hfe03\nPort Number : 22097\n\n+ set -e\n+ ECFLOW_RUNNING=true\n+ export ECF_PORT\n+ export ECF_HOST\n+ ecflow_client --load=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/ecflow_run/regtest_122270.def\n+ ecflow_client --begin=regtest_122270\n+ active_tasks=1\n+ [[ 1 -ne 0 ]]\n+ wait 125566\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 126964\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 131354\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 132722\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 134428\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 136121\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 137708\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 139631\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 141286\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 141880\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 142053\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 142186\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 142314\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 142646\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 142924\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 143048\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 143228\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 143351\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 143501\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 143811\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 144151\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 144328\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 144502\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 144614\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 144747\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 145448\n+ sleep 10\n++ wc -l\n++ grep \'task \'\n++ ecflow_client --get_state /regtest_122270\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 146329\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 146449\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 146622\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 146751\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 146877\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 148719\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 150969\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 151183\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 151384\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 151511\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 151639\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152116\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152355\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152478\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152653\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152775\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152912\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 153752\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 154086\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 154395\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 155452\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 155619\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 155751\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 159737\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 160756\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 162092\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 163492\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 163687\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 164267\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=125\n+ echo \'ecflow tasks remaining: 125\'\necflow tasks remaining: 125\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 125 -ne 0 ]]\n+ wait 165762\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=125\n+ echo \'ecflow tasks remaining: 125\'\necflow tasks remaining: 125\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 125 -ne 0 ]]\n+ wait 166040\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=125\n+ echo \'ecflow tasks remaining: 125\'\necflow tasks remaining: 125\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 125 -ne 0 ]]\n+ wait 166484\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=125\n+ echo \'ecflow tasks remaining: 125\'\necflow tasks remaining: 125\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 125 -ne 0 ]]\n+ wait 167372\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=125\n+ echo \'ecflow tasks remaining: 125\'\necflow tasks remaining: 125\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 125 -ne 0 ]]\n+ wait 167668\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 168641\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 172947\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 177288\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 180024\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 182339\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 184758\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=121\n+ echo \'ecflow tasks remaining: 121\'\necflow tasks remaining: 121\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 121 -ne 0 ]]\n+ wait 187207\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=121\n+ echo \'ecflow tasks remaining: 121\'\necflow tasks remaining: 121\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 121 -ne 0 ]]\n+ wait 188357\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=120\n+ echo \'ecflow tasks remaining: 120\'\necflow tasks remaining: 120\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 120 -ne 0 ]]\n+ wait 188702\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=120\n+ echo \'ecflow tasks remaining: 120\'\necflow tasks remaining: 120\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 120 -ne 0 ]]\n+ wait 188928\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=120\n+ echo \'ecflow tasks remaining: 120\'\necflow tasks remaining: 120\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 120 -ne 0 ]]\n+ wait 189313\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=120\n+ echo \'ecflow tasks remaining: 120\'\necflow tasks remaining: 120\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 120 -ne 0 ]]\n+ wait 189656\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 190439\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 192606\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 193660\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 194075\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 194230\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 194383\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 194861\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 195430\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=116\n+ echo \'ecflow tasks remaining: 116\'\necflow tasks remaining: 116\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 116 -ne 0 ]]\n+ wait 195612\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=116\n+ echo \'ecflow tasks remaining: 116\'\necflow tasks remaining: 116\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 116 -ne 0 ]]\n+ wait 195795\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=116\n+ echo \'ecflow tasks remaining: 116\'\necflow tasks remaining: 116\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 116 -ne 0 ]]\n+ wait 195925\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=116\n+ echo \'ecflow tasks remaining: 116\'\necflow tasks remaining: 116\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 116 -ne 0 ]]\n+ wait 196050\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=116\n+ echo \'ecflow tasks remaining: 116\'\necflow tasks remaining: 116\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 116 -ne 0 ]]\n+ wait 196483\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=115\n+ echo \'ecflow tasks remaining: 115\'\necflow tasks remaining: 115\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 115 -ne 0 ]]\n+ wait 197173\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 197538\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 198005\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 198136\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 198263\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 199888\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 202979\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 203191\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 203364\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 203510\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 203627\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 204382\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 205470\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=100\n+ echo \'ecflow tasks remaining: 100\'\necflow tasks remaining: 100\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 100 -ne 0 ]]\n+ wait 205811\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=100\n+ echo \'ecflow tasks remaining: 100\'\necflow tasks remaining: 100\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 100 -ne 0 ]]\n+ wait 206018\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=100\n+ echo \'ecflow tasks remaining: 100\'\necflow tasks remaining: 100\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 100 -ne 0 ]]\n+ wait 206145\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=100\n+ echo \'ecflow tasks remaining: 100\'\necflow tasks remaining: 100\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 100 -ne 0 ]]\n+ wait 206291\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=99\n+ echo \'ecflow tasks remaining: 99\'\necflow tasks remaining: 99\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 99 -ne 0 ]]\n+ wait 206954\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=97\n+ echo \'ecflow tasks remaining: 97\'\necflow tasks remaining: 97\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 97 -ne 0 ]]\n+ wait 207624\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=96\n+ echo \'ecflow tasks remaining: 96\'\necflow tasks remaining: 96\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 96 -ne 0 ]]\n+ wait 207899\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=96\n+ echo \'ecflow tasks remaining: 96\'\necflow tasks remaining: 96\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 96 -ne 0 ]]\n+ wait 208285\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=96\n+ echo \'ecflow tasks remaining: 96\'\necflow tasks remaining: 96\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 96 -ne 0 ]]\n+ wait 208329\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=96\n+ echo \'ecflow tasks remaining: 96\'\necflow tasks remaining: 96\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 96 -ne 0 ]]\n+ wait 208381\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 208853\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 209274\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 209339\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 209507\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 209549\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 209970\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 211345\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 212717\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 213014\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 213103\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 213179\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 213456\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=91\n+ echo \'ecflow tasks remaining: 91\'\necflow tasks remaining: 91\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 91 -ne 0 ]]\n+ wait 217522\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=90\n+ echo \'ecflow tasks remaining: 90\'\necflow tasks remaining: 90\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 90 -ne 0 ]]\n+ wait 220112\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=90\n+ echo \'ecflow tasks remaining: 90\'\necflow tasks remaining: 90\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 90 -ne 0 ]]\n+ wait 222094\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=90\n+ echo \'ecflow tasks remaining: 90\'\necflow tasks remaining: 90\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 90 -ne 0 ]]\n+ wait 224216\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=89\n+ echo \'ecflow tasks remaining: 89\'\necflow tasks remaining: 89\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 89 -ne 0 ]]\n+ wait 226147\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=89\n+ echo \'ecflow tasks remaining: 89\'\necflow tasks remaining: 89\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 89 -ne 0 ]]\n+ wait 228381\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=88\n+ echo \'ecflow tasks remaining: 88\'\necflow tasks remaining: 88\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 88 -ne 0 ]]\n+ wait 228904\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=84\n+ echo \'ecflow tasks remaining: 84\'\necflow tasks remaining: 84\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 84 -ne 0 ]]\n+ wait 229454\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 229624\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 229684\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 229726\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 229969\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 230236\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 230585\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=80\n+ echo \'ecflow tasks remaining: 80\'\necflow tasks remaining: 80\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 80 -ne 0 ]]\n+ wait 230744\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=80\n+ echo \'ecflow tasks remaining: 80\'\necflow tasks remaining: 80\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 80 -ne 0 ]]\n+ wait 230793\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=80\n+ echo \'ecflow tasks remaining: 80\'\necflow tasks remaining: 80\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 80 -ne 0 ]]\n+ wait 230836\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=80\n+ echo \'ecflow tasks remaining: 80\'\necflow tasks remaining: 80\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 80 -ne 0 ]]\n+ wait 231027\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=78\n+ echo \'ecflow tasks remaining: 78\'\necflow tasks remaining: 78\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 78 -ne 0 ]]\n+ wait 231431\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=77\n+ echo \'ecflow tasks remaining: 77\'\necflow tasks remaining: 77\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 77 -ne 0 ]]\n+ wait 231888\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=74\n+ echo \'ecflow tasks remaining: 74\'\necflow tasks remaining: 74\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 74 -ne 0 ]]\n+ wait 232066\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=74\n+ echo \'ecflow tasks remaining: 74\'\necflow tasks remaining: 74\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 74 -ne 0 ]]\n+ wait 232116\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=74\n+ echo \'ecflow tasks remaining: 74\'\necflow tasks remaining: 74\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 74 -ne 0 ]]\n+ wait 232165\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=74\n+ echo \'ecflow tasks remaining: 74\'\necflow tasks remaining: 74\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 74 -ne 0 ]]\n+ wait 232918\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=74\n+ echo \'ecflow tasks remaining: 74\'\necflow tasks remaining: 74\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 74 -ne 0 ]]\n+ wait 233548\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=73\n+ echo \'ecflow tasks remaining: 73\'\necflow tasks remaining: 73\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 73 -ne 0 ]]\n+ wait 233877\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=71\n+ echo \'ecflow tasks remaining: 71\'\necflow tasks remaining: 71\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 71 -ne 0 ]]\n+ wait 234093\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=70\n+ echo \'ecflow tasks remaining: 70\'\necflow tasks remaining: 70\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 70 -ne 0 ]]\n+ wait 234161\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=70\n+ echo \'ecflow tasks remaining: 70\'\necflow tasks remaining: 70\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 70 -ne 0 ]]\n+ wait 234211\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=70\n+ echo \'ecflow tasks remaining: 70\'\necflow tasks remaining: 70\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 70 -ne 0 ]]\n+ wait 236025\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=70\n+ echo \'ecflow tasks remaining: 70\'\necflow tasks remaining: 70\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 70 -ne 0 ]]\n+ wait 238652\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=70\n+ echo \'ecflow tasks remaining: 70\'\necflow tasks remaining: 70\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 70 -ne 0 ]]\n+ wait 238913\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=68\n+ echo \'ecflow tasks remaining: 68\'\necflow tasks remaining: 68\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 68 -ne 0 ]]\n+ wait 239091\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=68\n+ echo \'ecflow tasks remaining: 68\'\necflow tasks remaining: 68\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 68 -ne 0 ]]\n+ wait 239146\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=68\n+ echo \'ecflow tasks remaining: 68\'\necflow tasks remaining: 68\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 68 -ne 0 ]]\n+ wait 239194\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=68\n+ echo \'ecflow tasks remaining: 68\'\necflow tasks remaining: 68\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 68 -ne 0 ]]\n+ wait 239547\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=66\n+ echo \'ecflow tasks remaining: 66\'\necflow tasks remaining: 66\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 66 -ne 0 ]]\n+ wait 240073\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=65\n+ echo \'ecflow tasks remaining: 65\'\necflow tasks remaining: 65\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 65 -ne 0 ]]\n+ wait 240519\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=63\n+ echo \'ecflow tasks remaining: 63\'\necflow tasks remaining: 63\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 63 -ne 0 ]]\n+ wait 240810\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=63\n+ echo \'ecflow tasks remaining: 63\'\necflow tasks remaining: 63\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 63 -ne 0 ]]\n+ wait 240900\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=61\n+ echo \'ecflow tasks remaining: 61\'\necflow tasks remaining: 61\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 61 -ne 0 ]]\n+ wait 241152\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=61\n+ echo \'ecflow tasks remaining: 61\'\necflow tasks remaining: 61\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 61 -ne 0 ]]\n+ wait 241363\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=61\n+ echo \'ecflow tasks remaining: 61\'\necflow tasks remaining: 61\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 61 -ne 0 ]]\n+ wait 241842\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=58\n+ echo \'ecflow tasks remaining: 58\'\necflow tasks remaining: 58\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 58 -ne 0 ]]\n+ wait 242458\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 242768\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 243003\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 243052\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 244183\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 244707\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 244964\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=54\n+ echo \'ecflow tasks remaining: 54\'\necflow tasks remaining: 54\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 54 -ne 0 ]]\n+ wait 245194\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=54\n+ echo \'ecflow tasks remaining: 54\'\necflow tasks remaining: 54\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 54 -ne 0 ]]\n+ wait 245248\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=54\n+ echo \'ecflow tasks remaining: 54\'\necflow tasks remaining: 54\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 54 -ne 0 ]]\n+ wait 245312\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=53\n+ echo \'ecflow tasks remaining: 53\'\necflow tasks remaining: 53\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 53 -ne 0 ]]\n+ wait 245752\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=53\n+ echo \'ecflow tasks remaining: 53\'\necflow tasks remaining: 53\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 53 -ne 0 ]]\n+ wait 245897\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=51\n+ echo \'ecflow tasks remaining: 51\'\necflow tasks remaining: 51\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 51 -ne 0 ]]\n+ wait 246152\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=51\n+ echo \'ecflow tasks remaining: 51\'\necflow tasks remaining: 51\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 51 -ne 0 ]]\n+ wait 246390\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 246557\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 246884\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 250897\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 252244\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 253634\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 255314\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 257250\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 259430\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 261946\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 262363\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 262540\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 263352\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 264379\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 267257\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=36\n+ echo \'ecflow tasks remaining: 36\'\necflow tasks remaining: 36\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\nWill force aborted state for task /regtest_122270/fv3_ccpp_restart_prod\nWill force aborted state for task /regtest_122270/fv3_ccpp_read_inc_prod\nWill force aborted state for task /regtest_122270/fv3_ccpp_iau_prod\n+ [[ 36 -ne 0 ]]\n+ wait 269160\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 270602\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 271512\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 271961\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 272741\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 273398\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 273762\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 274586\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 275216\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 275620\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 276276\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 277161\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 278157\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 278618\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 279169\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 279388\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 279507\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 280547\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 283667\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 284052\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 284406\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 285305\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 285893\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 286866\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 287671\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 287840\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 288016\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 288055\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 288097\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 288311\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 288805\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 289109\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 289718\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 289903\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 289947\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 290266\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 290359\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 290498\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 290795\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 290836\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 290881\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291181\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291270\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291403\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291623\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291751\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291793\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 293330\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 299147\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 301518\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 303417\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 304921\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 306585\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308377\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308436\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308495\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308650\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308689\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308744\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 309528\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 309643\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 309720\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 310576\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 310717\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 310766\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 311005\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 311265\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 439\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 589\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 629\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 682\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 1540\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 1948\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 2026\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 2451\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 2498\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 2934\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 6271\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=20\n+ echo \'ecflow tasks remaining: 20\'\necflow tasks remaining: 20\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 20 -ne 0 ]]\n+ wait 7269\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 7943\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 10748\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 11521\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 12216\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 13145\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 13244\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 13795\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 14547\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 15092\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 16170\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 17077\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 17789\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 18334\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 19246\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 20147\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 21217\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 22156\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 22301\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 22502\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=16\n+ echo \'ecflow tasks remaining: 16\'\necflow tasks remaining: 16\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 16 -ne 0 ]]\n+ wait 22958\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 23209\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 23594\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 23988\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 24793\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 25272\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 25746\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 26466\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 27630\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 31702\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 33234\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 35107\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 36902\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 38782\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 40875\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 41213\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 41486\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 41749\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 42146\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 42189\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 42836\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 43429\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 43543\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 43680\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 43749\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 44160\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 44445\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=14\n+ echo \'ecflow tasks remaining: 14\'\necflow tasks remaining: 14\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 14 -ne 0 ]]\n+ wait 44568\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=14\n+ echo \'ecflow tasks remaining: 14\'\necflow tasks remaining: 14\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 14 -ne 0 ]]\n+ wait 44691\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=13\n+ echo \'ecflow tasks remaining: 13\'\necflow tasks remaining: 13\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 13 -ne 0 ]]\n+ wait 44907\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=13\n+ echo \'ecflow tasks remaining: 13\'\necflow tasks remaining: 13\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 13 -ne 0 ]]\n+ wait 45148\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=13\n+ echo \'ecflow tasks remaining: 13\'\necflow tasks remaining: 13\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 13 -ne 0 ]]\n+ wait 45327\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=13\n+ echo \'ecflow tasks remaining: 13\'\necflow tasks remaining: 13\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 13 -ne 0 ]]\n+ wait 45652\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=13\n+ echo \'ecflow tasks remaining: 13\'\necflow tasks remaining: 13\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 13 -ne 0 ]]\n+ wait 45908\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 46078\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 46302\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 46454\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 46917\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 49497\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 51019\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 51195\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 51368\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 51545\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 51853\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 52867\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 53009\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 53177\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 53345\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 53496\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 53750\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 54319\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 54648\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 55066\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 55233\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 55387\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 55697\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 56013\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 56154\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 56327\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 56499\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 56661\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 57027\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 57192\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 57340\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 57546\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 57705\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=11\n+ echo \'ecflow tasks remaining: 11\'\necflow tasks remaining: 11\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 11 -ne 0 ]]\n+ wait 57878\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=11\n+ echo \'ecflow tasks remaining: 11\'\necflow tasks remaining: 11\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 11 -ne 0 ]]\n+ wait 59468\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=11\n+ echo \'ecflow tasks remaining: 11\'\necflow tasks remaining: 11\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 11 -ne 0 ]]\n+ wait 63649\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=11\n+ echo \'ecflow tasks remaining: 11\'\necflow tasks remaining: 11\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 11 -ne 0 ]]\n+ wait 65299\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 67275\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 69364\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 71293\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 73649\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 73826\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 74011\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 74218\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 74386\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 74571\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 75024\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 75157\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=8\n+ echo \'ecflow tasks remaining: 8\'\necflow tasks remaining: 8\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 8 -ne 0 ]]\n+ wait 75293\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 75528\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 75663\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 75946\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 76510\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 76690\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 76834\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 76998\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 77167\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 77422\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 78629\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 78779\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 78939\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 79099\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 79245\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 79583\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 82870\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 83387\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 83548\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 83691\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 83823\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 84074\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 84411\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 84541\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 84779\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 85222\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 85362\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 85672\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 86249\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 86549\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 86932\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 87072\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 87218\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 87611\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 88569\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 88691\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 88884\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 89014\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 89154\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 89413\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 89809\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 89932\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 90128\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 90276\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 90448\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 91698\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 96888\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 99180\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=4\n+ echo \'ecflow tasks remaining: 4\'\necflow tasks remaining: 4\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 4 -ne 0 ]]\n+ wait 101350\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 103534\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 105802\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 106558\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 106858\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 106986\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 107164\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 107289\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 107416\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 108192\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 109128\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 109265\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 109443\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 109589\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 109723\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110011\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110289\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110328\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110425\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110465\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110516\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110836\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110893\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110944\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 111047\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 111100\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 111157\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 113086\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 122438\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 133171\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 144126\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 151008\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 151083\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 152193\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 152868\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 152924\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 153024\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 153083\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 153131\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 153680\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 153943\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 154183\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 154374\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 154422\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=0\n+ echo \'ecflow tasks remaining: 0\'\necflow tasks remaining: 0\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 0 -ne 0 ]]\n+ sleep 65\n+ ecflow_client --delete=yes /regtest_122270\n+ sleep 5\n+ set +e\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_1.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_10.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_11.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_12.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_13.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_14.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_15.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_16.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_17.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_18.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_19.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_2.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_20.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_3.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_4.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_5.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_6.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_7.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_8.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_9.log\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_017_fv3_ccpp_gfdlmprad_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_018_fv3_ccpp_gfdlmprad_atmwav_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_019_fv3_ccpp_wrtGauss_nemsio_c768_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_020_fv3_ccpp_multigases_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_021_fv3_ccpp_control_32bit_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_022_fv3_ccpp_stretched_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_023_fv3_ccpp_stretched_nest_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_024_fv3_ccpp_regional_control_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_025_fv3_ccpp_regional_restart_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_026_fv3_ccpp_regional_quilt_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_027_fv3_ccpp_regional_quilt_netcdf_parallel_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_028_fv3_ccpp_gfdlmp_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_029_fv3_ccpp_gfdlmprad_gwd_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_030_fv3_ccpp_gfdlmprad_noahmp_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_031_fv3_ccpp_csawmg_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_032_fv3_ccpp_satmedmf_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_033_fv3_ccpp_satmedmfq_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_034_fv3_ccpp_gfdlmp_32bit_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_035_fv3_ccpp_gfdlmprad_32bit_post_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_036_fv3_ccpp_cpt_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_037_fv3_ccpp_gsd_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_038_fv3_ccpp_rap_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_039_fv3_ccpp_hrrr_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_040_fv3_ccpp_thompson_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_041_fv3_ccpp_thompson_no_aero_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_042_fv3_ccpp_rrfs_v1beta_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_043_fv3_ccpp_gfs_v15p2_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_044_fv3_ccpp_gfs_v16_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_045_fv3_ccpp_gfs_v16_restart_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_046_fv3_ccpp_gfs_v16_stochy_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_047_fv3_ccpp_gfs_v15p2_RRTMGP_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_048_fv3_ccpp_gfs_v16_RRTMGP_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_049_fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_050_fv3_ccpp_gfsv16_csawmg_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_051_fv3_ccpp_gfsv16_csawmgt_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_052_fv3_ccpp_gocart_clm_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_053_fv3_ccpp_gfs_v16_flake_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_054_fv3_ccpp_HAFS_v0_hwrf_thompson_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_055_fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_056_fv3_ccpp_gfsv16_ugwpv1_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_057_fv3_ccpp_gfsv16_ugwpv1_warmstart_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_058_fv3_ccpp_gfs_v15p2_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_059_fv3_ccpp_gfs_v16_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_060_fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_061_fv3_ccpp_gfs_v16_RRTMGP_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_062_fv3_ccpp_regional_control_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_063_fv3_ccpp_control_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_064_fv3_ccpp_stretched_nest_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_065_fv3_ccpp_gsd_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_066_fv3_ccpp_gsd_diag3d_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_067_fv3_ccpp_thompson_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_068_fv3_ccpp_thompson_no_aero_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_069_fv3_ccpp_rrfs_v1beta_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_070_fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_071_fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_072_fv3_ccpp_gfsv16_ugwpv1_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_073_cpld_control_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_074_cpld_restart_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_075_cpld_controlfrac_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_076_cpld_restartfrac_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_077_cpld_2threads_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_078_cpld_decomp_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_079_cpld_satmedmf_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_080_cpld_ca_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_081_cpld_control_c192_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_082_cpld_restart_c192_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_083_cpld_controlfrac_c192_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_084_cpld_restartfrac_c192_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_085_cpld_control_c384_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_086_cpld_restart_c384_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_087_cpld_controlfrac_c384_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_088_cpld_restartfrac_c384_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_089_cpld_bmark_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_090_cpld_restart_bmark_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_091_cpld_bmarkfrac_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_092_cpld_restart_bmarkfrac_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_093_cpld_bmarkfrac_v16_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_094_cpld_restart_bmarkfrac_v16_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_095_cpld_bmark_wave_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_096_cpld_bmarkfrac_wave_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_097_cpld_bmarkfrac_wave_v16_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_098_cpld_control_wave_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_099_cpld_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_100_cpld_debugfrac_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_101_datm_control_cfsr.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_102_datm_restart_cfsr.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_103_datm_control_gefs.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_104_datm_bulk_cfsr.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_105_datm_bulk_gefs.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_106_datm_mx025_cfsr.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_107_datm_mx025_gefs.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_108_datm_debug_cfsr.log\n+ [[ -e fail_test ]]\n+ echo \'FAILED TESTS: \'\nFAILED TESTS: \n+ echo \'FAILED TESTS: \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_2threads 003 failed in run_test failed \'\nTest fv3_ccpp_2threads 003 failed in run_test failed \n+ echo \'Test fv3_ccpp_2threads 003 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_control 001 failed in run_test failed \'\nTest fv3_ccpp_control 001 failed in run_test failed \n+ echo \'Test fv3_ccpp_control 001 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGauss_netcdf_esmf 006 failed in run_test failed \'\nTest fv3_ccpp_wrtGauss_netcdf_esmf 006 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGauss_netcdf_esmf 006 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGauss_netcdf_parallel 008 failed in run_test failed \'\nTest fv3_ccpp_wrtGauss_netcdf_parallel 008 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGauss_netcdf_parallel 008 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_decomp 002 failed in run_test failed \'\nTest fv3_ccpp_decomp 002 failed in run_test failed \n+ echo \'Test fv3_ccpp_decomp 002 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGauss_netcdf 007 failed in run_test failed \'\nTest fv3_ccpp_wrtGauss_netcdf 007 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGauss_netcdf 007 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGlatlon_netcdf 009 failed in run_test failed \'\nTest fv3_ccpp_wrtGlatlon_netcdf 009 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGlatlon_netcdf 009 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGauss_nemsio 010 failed in run_test failed \'\nTest fv3_ccpp_wrtGauss_nemsio 010 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGauss_nemsio 010 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGauss_nemsio_c192 011 failed in run_test failed \'\nTest fv3_ccpp_wrtGauss_nemsio_c192 011 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGauss_nemsio_c192 011 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_stochy 012 failed in run_test failed \'\nTest fv3_ccpp_stochy 012 failed in run_test failed \n+ echo \'Test fv3_ccpp_stochy 012 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_ca 013 failed in run_test failed \'\nTest fv3_ccpp_ca 013 failed in run_test failed \n+ echo \'Test fv3_ccpp_ca 013 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_lndp 014 failed in run_test failed \'\nTest fv3_ccpp_lndp 014 failed in run_test failed \n+ echo \'Test fv3_ccpp_lndp 014 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_lheatstrg 016 failed in run_test failed \'\nTest fv3_ccpp_lheatstrg 016 failed in run_test failed \n+ echo \'Test fv3_ccpp_lheatstrg 016 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo\n\n+ echo REGRESSION TEST FAILED\nREGRESSION TEST FAILED\n+ echo\n+ echo REGRESSION TEST FAILED\n+ date\n++ printf \'%02dh:%02dm:%02ds\\n\' 1 19 32\n+ elapsed_time=01h:19m:32s\n+ echo \'Elapsed time: 01h:19m:32s. Have a nice day!\'\n+ echo \'Elapsed time: 01h:19m:32s. Have a nice day!\'\nElapsed time: 01h:19m:32s. Have a nice day!\n+ echo \'rt.sh finished\'\nrt.sh finished\n+ cleanup\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/lock\n+ [[ true == true ]]\n+ ecflow_stop\n+ [[ true == true ]]\n+ set +e\n++ ecflow_client --get\n++ grep \'^suite\'\n+ SUITES=\n+ echo SUITES=\nSUITES=\n+ \'[\' -z \'\' \']\'\n+ ecflow_client --halt=yes\n+ ecflow_client --check_pt\n+ ecflow_client --terminate=yes\n+ trap 0\n+ exit\n' +CRITICAL:JOB/RUNFUNCTION:STDERR: None +INFO:JOB/RUNFUNCTION:Attempting to run callback: move_rt_logs +INFO:JOB/MOVE_RT_LOGS:Attempting to run: git add tests/RegressionTests_hera.intel.log +INFO:JOB/MOVE_RT_LOGS:Finished command git add tests/RegressionTests_hera.intel.log +INFO:JOB/MOVE_RT_LOGS:Attempting to run: git commit -m "Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log" +INFO:JOB/MOVE_RT_LOGS:Finished command git commit -m "Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log" +INFO:JOB/MOVE_RT_LOGS:Attempting to run: git pull --no-edit origin feature/rt-automation +INFO:JOB/MOVE_RT_LOGS:Finished command git pull --no-edit origin feature/rt-automation +INFO:JOB/MOVE_RT_LOGS:Attempting to run: sleep 10 +INFO:JOB/MOVE_RT_LOGS:Finished command sleep 10 +INFO:JOB/MOVE_RT_LOGS:Attempting to run: git push origin feature/rt-automation +INFO:JOB/MOVE_RT_LOGS:Finished command git push origin feature/rt-automation +INFO:JOB/RUNFUNCTION:Finished callback move_rt_logs +INFO:MAIN:Calling push_rtauto_log +INFO:JOB/PUSH_RTAUTO_LOG:Running "cp /scratch1/NCEPDEV/nems/Brian.Curtis/git2/BrianCurtis-NOAA/ufs-weather-model-rt/tests/auto/rt_auto_20210223031812.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/auto/" in location "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model" From fc3ea942ac96600e4e6fc7fe6d3e62ee45f34d75 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 24 Feb 2021 01:29:34 +0000 Subject: [PATCH 103/117] * Removed the need to log the API Token. * Log is now sent as a comment in PR instead of committed to repo * Log is more readable * Long log file deleted from repo --- tests/auto/rt_auto.py | 184 +++++++++++++------------- tests/auto/rt_auto.sh | 9 ++ tests/auto/rt_auto_20210223020202.log | 81 ------------ 3 files changed, 102 insertions(+), 172 deletions(-) delete mode 100644 tests/auto/rt_auto_20210223020202.log diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index a97a056cfb..9c6058a7e3 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -27,24 +27,13 @@ class GHInterface: client : pyGitHub communication object The connection to GitHub to make API requests ''' - def __init__(self) -> None: + def __init__(self): self.logger = logging.getLogger('GHINTERFACE') try: - with open('accesstoken.txt', 'rb') as f: - filedata = f.read() - except FileNotFoundError as e: - ERROR_MESSAGE = f'Please create a file "accesstoken.txt" that'\ - ' contains your GitHub API Token only.\n'\ - 'Make sure to set permission so others can not read it (400)' - self.logger.critical(ERROR_MESSAGE) - raise FileNotFoundError(e) - else: - self.GHACCESSTOKEN = str(filedata)[2:-3] - try: - self.client = gh(self.GHACCESSTOKEN) - except Exception as e: - self.logger.critical(f'Exception is {e}') - raise Exception(e) + self.client = gh(os.getenv('ghapitoken')) + except Exception as e: + self.logger.critical(f'Exception is {e}') + raise(e) def parse_args_in(): ''' Parse all input arguments coming from rt_auto.sh ''' @@ -146,51 +135,52 @@ def add_pr_label(self): self.logger.info(f'Adding Label: {self.preq_dict["label"]}') self.preq_dict['preq'].add_to_labels(self.preq_dict['label']) - def push_rtauto_log(self, log_path, log_filename): - logger = logging.getLogger('JOB/PUSH_RTAUTO_LOG') - push_rtauto_commands = [ - [f'cp {log_path}/{log_filename} {self.pr_repo_loc}/tests/auto/', self.pr_repo_loc], - [f'git add tests/auto/{log_filename}', self.pr_repo_loc], - [f'git commit -m "Auto: adding rt_auto.log"', self.pr_repo_loc], - [f'git pull --no-edit origin {self.branch}', self.pr_repo_loc], - ['sleep 10', self.pr_repo_loc], - [f'git push origin {self.branch}', self.pr_repo_loc] - ] + def send_log_as_comment(self): + with open('rt_auto.log', 'r') as f: + filedata = f.read() + self.preq_dict['preq'].create_issue_comment(filedata) - for command, in_cwd in push_rtauto_commands: + def run_commands(self, commands_with_cwd): + logger = logging.getLogger('RUN_COMMANDS') + for command, in_cwd in commands_with_cwd: logger.info(f'Running "{command}" in location "{in_cwd}"') try: output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out, err = output.communicate() + out = [] if not out else out.decode('utf8').split('\n') + err = [] if not err else err.decode('utf8').split('\n') except Exception as e: self.add_pr_label() logger.critical(e) - logger.critical(f'STDOUT: {out}') - logger.critical(f'STDERR: {err}') + [logger.critical(f'stdout: {item}') for item in out if not None] + [logger.critical(f'stderr: {eitem}') for eitem in err if not None] assert(e) else: logger.info(f'Finished running: {command}') - logger.debug(f'stdout: {out}') - logger.debug(f'stderr: {err}') + [logger.debug(f'stdout: {item}') for item in out if not None] + [logger.debug(f'stderr: {eitem}') for eitem in err if not None] def remove_pr_dir(self): logger = logging.getLogger('JOB/REMOVE_PR_DIR') pr_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}' - rm_command = f'rm -rf {pr_dir_str}' + rm_command = [f'rm -rf {pr_dir_str}', os.getcwd()] logger.info(f'Running "{rm_command}"') - try: - output = subprocess.Popen(rm_command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - out, err = output.communicate() - except Exception as e: - logger.warning('Removal of directory at end failed.') - logger.warning(e) - logger.warning(f'STDOUT: {out}') - logger.warning(f'STDERR: {err}') - assert(e) - else: - logger.info(f'Finished running: {rm_command}') - logger.debug(f'stdout: {out}') - logger.debug(f'stderr: {err}') + self.run_commands(rm_command) + # try: + # output = subprocess.Popen(rm_command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + # out, err = output.communicate() + # out = [] if not out else out.decode('utf8').split('\n') + # err = [] if not err else err.decode('utf8').split('\n') + # except Exception as e: + # logger.warning('Removal of directory at end failed.') + # logger.warning(e) + # [logger.warning(f'stdout: {item}') for item in out if not None] + # [logger.warning(f'stderr: {eitem}') for eitem in err if not None] + # assert(e) + # else: + # logger.info(f'Finished running: {rm_command}') + # [logger.debug(f'stdout: {item}') for item in out if not None] + # [logger.debug(f'stderr: {eitem}') for eitem in err if not None] def clone_pr_repo(self): ''' clone the GitHub pull request repo, via command line ''' @@ -198,8 +188,9 @@ def clone_pr_repo(self): repo_name = self.preq_dict['preq'].head.repo.name self.branch = self.preq_dict['preq'].head.ref git_url = self.preq_dict['preq'].head.repo.html_url.split('//') - git_url = f'{git_url[0]}//{self.ghinterface_obj.GHACCESSTOKEN}@{git_url[1]}' - logger.debug(f'Starting clone of {git_url}') + git_url = f'{git_url[0]}//${{ghapitoken}}@{git_url[1]}' + logger.info(f'GIT URL: {git_url}') + logger.info('Starting repo clone') repo_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}/{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' create_repo_commands = [ @@ -207,24 +198,27 @@ def clone_pr_repo(self): [f'git clone -b {self.branch} {git_url}', repo_dir_str], [f'git submodule update --init --recursive', f'{repo_dir_str}/{repo_name}'] ] - - for command, in_cwd in create_repo_commands: - logger.debug(f'Running "{command}" in location "{in_cwd}"') - try: - output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - out, err = output.communicate() - except Exception as e: - self.add_pr_label() - logger.critical(e) - logger.critical(f'STDOUT: {out}') - logger.critical(f'STDERR: {err}') - assert(e) - else: - logger.debug(f'Finished running: {command}') - logger.debug(f'stdout: {out}') - logger.debug(f'stderr: {err}') - - logger.debug(f'Finished Cloning {git_url}') + self.run_commands(create_repo_commands) + # for command, in_cwd in create_repo_commands: + # logger.info(f'Running "{command}" in location "{in_cwd}"') + # try: + # output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + # out, err = output.communicate() + # out = [] if not out else out.decode('utf8').split('\n') + # err = [] if not err else err.decode('utf8').split('\n') + # except Exception as e: + # self.add_pr_label() + # logger.critical(e) + # [logger.critical(f'stdout: {item}') for item in out if not None] + # [logger.critical(f'stderr: {eitem}') for eitem in err if not None] + # + # assert(e) + # else: + # logger.info(f'Finished running: {command}') + # [logger.info(f'stdout: {item}') for item in out if not None] + # [logger.info(f'stderr: {eitem}') for eitem in err if not None] + + logger.info('Finished repo clone') self.pr_repo_loc = repo_dir_str+"/"+repo_name return self.pr_repo_loc @@ -235,21 +229,23 @@ def runFunction(self): logger.info(f'Running: "{self.preq_dict["action"]["command"]}" in "{self.pr_repo_loc}"') output = subprocess.Popen(self.preq_dict['action']['command'], cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out,err = output.communicate() + out = [] if not out else out.decode('utf8').split('\n') + err = [] if not err else err.decode('utf8').split('\n') except Exception as e: self.add_pr_label() logger.critical(e) - logger.critical(f'stdout: {out}') - logger.critical(f'stderr: {err}') + [logger.critical(f'stdout: {item}') for item in out if not None] + [logger.critical(f'stderr: {eitem}') for eitem in err if not None] assert(e) else: - logger.critical(f'STDOUT: {out}') - logger.critical(f'STDERR: {err}') + [logger.critical(f'stdout: {item}') for item in out if not None] + [logger.critical(f'stderr: {eitem}') for eitem in err if not None] logger.debug(output.returncode) if output.returncode != 0: self.add_pr_label() logger.critical(f'{self.preq_dict["action"]["command"]} Failed') - logger.debug(f'stdout: {out}') - logger.debug(f'stderr: {err}') + [logger.debug(f'stdout: {item}') for item in out if not None] + [logger.debug(f'stderr: {eitem}') for eitem in err if not None] else: try: logger.info(f'Attempting to run callback: {self.preq_dict["action"]["callback_fnc"]}') @@ -261,8 +257,8 @@ def runFunction(self): assert(e) else: logger.info(f'Finished callback {self.preq_dict["action"]["callback_fnc"]}') - logger.debug(f'stdout: {out}') - logger.debug(f'stderr: {err}') + [logger.debug(f'stdout: {item}') for item in out if not None] + [logger.debug(f'stderr: {eitem}') for eitem in err if not None] # Add Callback Functions After Here def move_rt_logs(self): @@ -279,21 +275,24 @@ def move_rt_logs(self): ['sleep 10', self.pr_repo_loc], [f'git push origin {self.branch}', self.pr_repo_loc] ] - for command, in_cwd in move_rt_commands: - try: - logger.info(f'Attempting to run: {command}') - output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - out, err = output.communicate() - except Exception as e: - self.add_pr_label() - logger.critical(e) - logger.critical(f'stdout: {out}') - logger.critical(f'stderr: {err}') - assert(e) - else: - logger.info(f'Finished command {command}') - logger.debug(f'stdout: {out}') - logger.debug(f'stderr: {err}') + self.run_commands(move_rt_commands) + # for command, in_cwd in move_rt_commands: + # try: + # logger.info(f'Attempting to run: {command}') + # output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + # out, err = output.communicate() + # out = [] if not out else out.decode('utf8').split('\n') + # err = [] if not err else err.decode('utf8').split('\n') + # except Exception as e: + # self.add_pr_label() + # logger.critical(e) + # [logger.critical(f'stdout: {item}') for item in out if not None] + # [logger.critical(f'stderr: {eitem}') for eitem in err if not None] + # assert(e) + # else: + # logger.info(f'Finished command {command}') + # [logger.debug(f'stdout: {item}') for item in out if not None] + # [logger.debug(f'stderr: {eitem}') for eitem in err if not None] else: logger.critical('Could not find RT log') raise FileNotFoundError('Could not find RT log') @@ -302,7 +301,10 @@ def main(): # handle logging log_path = os.getcwd() - log_filename = f'rt_auto_{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' + log_filename = 'rt_auto.log' + # Please don't run the following on cron with level=logging.DEBUG + # as it exposes the GH API Token + # Only set it to DEBUG while debugging logging.basicConfig(filename=log_filename, filemode='w', level=logging.INFO) logger = logging.getLogger('MAIN') logger.info('Starting Script') @@ -334,10 +336,10 @@ def main(): job.clone_pr_repo() logger.info('Calling runFunction') job.runFunction() - logger.info('Calling push_rtauto_log') - job.push_rtauto_log(log_path, log_filename) logger.info('Calling remove_pr_dir') job.remove_pr_dir() + logger.info('Calling send_log_as_comment') + job.send_log_as_comment() except Exception as e: job.add_pr_label() logger.critical(e) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index dfa4d4e1c6..a0b810348a 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -1,5 +1,14 @@ #!/bin/bash --login set -eux +if [ -f "accesstoken.sh" ]; then + source ./accesstoken.sh + export ghapitoken=$ghapitoken +else + echo "Please create accesstoken.sh (600) with the following content\n" + echo "/bin/bash\n" + echo "export ghapitoken=" + exit 1 +fi export RT_COMPILER='intel' source ../detect_machine.sh diff --git a/tests/auto/rt_auto_20210223020202.log b/tests/auto/rt_auto_20210223020202.log deleted file mode 100644 index 78b87b437b..0000000000 --- a/tests/auto/rt_auto_20210223020202.log +++ /dev/null @@ -1,81 +0,0 @@ -INFO:MAIN:Starting Script -INFO:MAIN:Parsing input args -INFO:MAIN:Calling input_data(). -INFO:MAIN:Setting up GitHub interface. -INFO:MAIN:Getting all pull requests, labels and actions applicable to this machine. -DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.github.com:443 -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model HTTP/1.1" 200 None -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:03 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"8fa58addc1610e2c596885e1efaca54dacd55033b174ce4307a25643f8ffdc85"', 'last-modified': 'Fri, 19 Feb 2021 19:49:26 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4983', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '17', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:79640E:11D27D0:6034621A'} {"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop","permissions":{"admin":false,"push":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":false,"allow_rebase_merge":false,"delete_branch_on_merge":false,"organization":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"network_count":118,"subscribers_count":43} -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/pulls?state=open&sort=created&base=develop HTTP/1.1" 200 None -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/pulls?state=open&sort=created&base=develop {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:05 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"ef2039903f966af88c768adb2cfb257e9e73e26507d4af531b78cb6f7790c687"', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': '', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4982', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '18', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:79641D:11D2813:6034621B'} [{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364","id":553739779,"node_id":"MDExOlB1bGxSZXF1ZXN0NTUzNzM5Nzc5","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/364","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/364.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/364.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/364","number":364,"state":"open","locked":false,"title":"Regional inlinepost","user":{"login":"junwang-noaa","id":37633869,"node_id":"MDQ6VXNlcjM3NjMzODY5","avatar_url":"https://avatars.githubusercontent.com/u/37633869?v=4","gravatar_id":"","url":"https://api.github.com/users/junwang-noaa","html_url":"https://github.com/junwang-noaa","followers_url":"https://api.github.com/users/junwang-noaa/followers","following_url":"https://api.github.com/users/junwang-noaa/following{/other_user}","gists_url":"https://api.github.com/users/junwang-noaa/gists{/gist_id}","starred_url":"https://api.github.com/users/junwang-noaa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/junwang-noaa/subscriptions","organizations_url":"https://api.github.com/users/junwang-noaa/orgs","repos_url":"https://api.github.com/users/junwang-noaa/repos","events_url":"https://api.github.com/users/junwang-noaa/events{/privacy}","received_events_url":"https://api.github.com/users/junwang-noaa/received_events","type":"User","site_admin":false},"body":"## Description\r\n\r\nCode changes have been added for inline post capability for regional applications (HAFS and LAM). The supported output grids are \"regional_latlon\" for HAFS, \"rotated_latlon\" and \"lambert_comformal\" for LAM.\r\n\r\n### Issue(s) addressed\r\n\r\nLink the issues to be closed with this PR, whether in this repository, or in another repository.\r\n\r\n- fixes ufs-weather-model [#259](https://github.com/ufs-community/ufs-weather-model/issues/259)\r\n\r\n\r\n## Testing\r\n\r\nTesting has been done on hera and orion with regional_quilt test, which is low resolution runs.\r\nNeed to test with high resolution regional runs, an older version showed error in ESMF_AttributeGet call.\r\n\r\n## Dependencies\r\n\r\nRelated PR:\r\n\r\n- fv3atm [PR #229](https://github.com/NOAA-EMC/fv3atm/pull/229)\r\n- post [PR #255](https://github.com/NOAA-EMC/EMC_post/pull/255)\r\n- This PR also requires a upp lib in hpc stack after post is merged.\r\n","created_at":"2021-01-12T20:25:41Z","updated_at":"2021-02-18T21:09:16Z","closed_at":null,"merged_at":null,"merge_commit_sha":"22b8e630d08c73c67fc70861f24c962ae50b9263","assignee":null,"assignees":[],"requested_reviewers":[{"login":"WenMeng-NOAA","id":48260754,"node_id":"MDQ6VXNlcjQ4MjYwNzU0","avatar_url":"https://avatars.githubusercontent.com/u/48260754?v=4","gravatar_id":"","url":"https://api.github.com/users/WenMeng-NOAA","html_url":"https://github.com/WenMeng-NOAA","followers_url":"https://api.github.com/users/WenMeng-NOAA/followers","following_url":"https://api.github.com/users/WenMeng-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/WenMeng-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/WenMeng-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WenMeng-NOAA/subscriptions","organizations_url":"https://api.github.com/users/WenMeng-NOAA/orgs","repos_url":"https://api.github.com/users/WenMeng-NOAA/repos","events_url":"https://api.github.com/users/WenMeng-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/WenMeng-NOAA/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/364/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/47fd6f8bcb86f5d14841fe36678dcc89e07fe0b9","head":{"label":"junwang-noaa:regional_inlinepost","ref":"regional_inlinepost","sha":"47fd6f8bcb86f5d14841fe36678dcc89e07fe0b9","user":{"login":"junwang-noaa","id":37633869,"node_id":"MDQ6VXNlcjM3NjMzODY5","avatar_url":"https://avatars.githubusercontent.com/u/37633869?v=4","gravatar_id":"","url":"https://api.github.com/users/junwang-noaa","html_url":"https://github.com/junwang-noaa","followers_url":"https://api.github.com/users/junwang-noaa/followers","following_url":"https://api.github.com/users/junwang-noaa/following{/other_user}","gists_url":"https://api.github.com/users/junwang-noaa/gists{/gist_id}","starred_url":"https://api.github.com/users/junwang-noaa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/junwang-noaa/subscriptions","organizations_url":"https://api.github.com/users/junwang-noaa/orgs","repos_url":"https://api.github.com/users/junwang-noaa/repos","events_url":"https://api.github.com/users/junwang-noaa/events{/privacy}","received_events_url":"https://api.github.com/users/junwang-noaa/received_events","type":"User","site_admin":false},"repo":{"id":215422683,"node_id":"MDEwOlJlcG9zaXRvcnkyMTU0MjI2ODM=","name":"ufs-weather-model","full_name":"junwang-noaa/ufs-weather-model","private":false,"owner":{"login":"junwang-noaa","id":37633869,"node_id":"MDQ6VXNlcjM3NjMzODY5","avatar_url":"https://avatars.githubusercontent.com/u/37633869?v=4","gravatar_id":"","url":"https://api.github.com/users/junwang-noaa","html_url":"https://github.com/junwang-noaa","followers_url":"https://api.github.com/users/junwang-noaa/followers","following_url":"https://api.github.com/users/junwang-noaa/following{/other_user}","gists_url":"https://api.github.com/users/junwang-noaa/gists{/gist_id}","starred_url":"https://api.github.com/users/junwang-noaa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/junwang-noaa/subscriptions","organizations_url":"https://api.github.com/users/junwang-noaa/orgs","repos_url":"https://api.github.com/users/junwang-noaa/repos","events_url":"https://api.github.com/users/junwang-noaa/events{/privacy}","received_events_url":"https://api.github.com/users/junwang-noaa/received_events","type":"User","site_admin":false},"html_url":"https://github.com/junwang-noaa/ufs-weather-model","description":null,"fork":true,"url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model","forks_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/junwang-noaa/ufs-weather-model/deployments","created_at":"2019-10-16T00:37:12Z","updated_at":"2021-01-25T14:25:42Z","pushed_at":"2021-02-18T21:09:15Z","git_url":"git://github.com/junwang-noaa/ufs-weather-model.git","ssh_url":"git@github.com:junwang-noaa/ufs-weather-model.git","clone_url":"https://github.com/junwang-noaa/ufs-weather-model.git","svn_url":"https://github.com/junwang-noaa/ufs-weather-model","homepage":null,"size":54021,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":1,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"8dabdb4489074375212cc5be4fb6e3a6f71cc590","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/364"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/364"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/364/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/364/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/47fd6f8bcb86f5d14841fe36678dcc89e07fe0b9"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372","id":555022768,"node_id":"MDExOlB1bGxSZXF1ZXN0NTU1MDIyNzY4","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/372","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/372.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/372.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/372","number":372,"state":"open","locked":false,"title":"Stoch updates","user":{"login":"pjpegion","id":38869668,"node_id":"MDQ6VXNlcjM4ODY5NjY4","avatar_url":"https://avatars.githubusercontent.com/u/38869668?v=4","gravatar_id":"","url":"https://api.github.com/users/pjpegion","html_url":"https://github.com/pjpegion","followers_url":"https://api.github.com/users/pjpegion/followers","following_url":"https://api.github.com/users/pjpegion/following{/other_user}","gists_url":"https://api.github.com/users/pjpegion/gists{/gist_id}","starred_url":"https://api.github.com/users/pjpegion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pjpegion/subscriptions","organizations_url":"https://api.github.com/users/pjpegion/orgs","repos_url":"https://api.github.com/users/pjpegion/repos","events_url":"https://api.github.com/users/pjpegion/events{/privacy}","received_events_url":"https://api.github.com/users/pjpegion/received_events","type":"User","site_admin":false},"body":"## Description\r\nThis PR references issue https://github.com/ufs-community/ufs-weather-model/issues/371\r\n\r\nAddition of stochastic physics restarts in netCDF format that will be written at the restart interval, and at end of run.\r\nAddition of stochastic cloud perturbation and Micropyiscs perturbations for SPPT.\r\nAddition of ocean stochastic physics\r\nand\r\nclean up of stochastic physics code.\r\n\r\nIs a change of answers expected from this PR?\r\nNo changes are expected with regression tests, but stochastic physics regression test answer does change due to using a local version of ffpack instead of the fftpack in splib.\r\n\r\n\r\n\r\n### Issue(s) addressed\r\n- fixes https://github.com/ufs-community/ufs-weather-model/issues/371\r\n\r\n\r\n## Testing\r\ntesting of new science additions were tested with 1-degree coupled model ensemble forecasts out to 35-day\r\nWhat compilers / HPCs was it tested with? All tests on hera with intel and GNU compuler.\r\nAre the changes covered by regression tests? (If not, why? Do new tests need to be added?)\r\nThe cloud perturbations and microphhysics perturbations are not included in any RTs.\r\n\r\nHave the ufs-weather-model regression test been run? Currently a subset of regression tests were run on hera with intel and GNU compliers\r\n\r\nWill the code updates change regression test baseline? If yes, why?\r\nYes, stochastic physics test will be changed due to using a local version of fftpack\r\nI am waiting on code review before doing the full regression test suite.\r\n\r\n## Dependencies\r\n\r\nIf testing this branch requires non-default branches in other repositories, list them.\r\nThose branches should have matching names (ideally)\r\n\r\n- waiting on https://github.com/NOAA-EMC/MOM6/pull/48\r\n- waiting on https://github.com/NOAA-EMC/fv3atm/pull/233\r\n- waiting on https://github.com/noaa-psd/stochastic_physics/pull/35\r\n","created_at":"2021-01-14T15:50:21Z","updated_at":"2021-02-08T18:27:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":"294ee4b579bddf5bef870f802baa7e5f08ba079a","assignee":null,"assignees":[],"requested_reviewers":[{"login":"climbfuji","id":8006981,"node_id":"MDQ6VXNlcjgwMDY5ODE=","avatar_url":"https://avatars.githubusercontent.com/u/8006981?v=4","gravatar_id":"","url":"https://api.github.com/users/climbfuji","html_url":"https://github.com/climbfuji","followers_url":"https://api.github.com/users/climbfuji/followers","following_url":"https://api.github.com/users/climbfuji/following{/other_user}","gists_url":"https://api.github.com/users/climbfuji/gists{/gist_id}","starred_url":"https://api.github.com/users/climbfuji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/climbfuji/subscriptions","organizations_url":"https://api.github.com/users/climbfuji/orgs","repos_url":"https://api.github.com/users/climbfuji/repos","events_url":"https://api.github.com/users/climbfuji/events{/privacy}","received_events_url":"https://api.github.com/users/climbfuji/received_events","type":"User","site_admin":false},{"login":"DusanJovic-NOAA","id":48258889,"node_id":"MDQ6VXNlcjQ4MjU4ODg5","avatar_url":"https://avatars.githubusercontent.com/u/48258889?v=4","gravatar_id":"","url":"https://api.github.com/users/DusanJovic-NOAA","html_url":"https://github.com/DusanJovic-NOAA","followers_url":"https://api.github.com/users/DusanJovic-NOAA/followers","following_url":"https://api.github.com/users/DusanJovic-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/DusanJovic-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/DusanJovic-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DusanJovic-NOAA/subscriptions","organizations_url":"https://api.github.com/users/DusanJovic-NOAA/orgs","repos_url":"https://api.github.com/users/DusanJovic-NOAA/repos","events_url":"https://api.github.com/users/DusanJovic-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/DusanJovic-NOAA/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/372/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/4a980ce73b7c0e1dffe181d5dc766c6c5f8787fb","head":{"label":"pjpegion:stoch_updates","ref":"stoch_updates","sha":"4a980ce73b7c0e1dffe181d5dc766c6c5f8787fb","user":{"login":"pjpegion","id":38869668,"node_id":"MDQ6VXNlcjM4ODY5NjY4","avatar_url":"https://avatars.githubusercontent.com/u/38869668?v=4","gravatar_id":"","url":"https://api.github.com/users/pjpegion","html_url":"https://github.com/pjpegion","followers_url":"https://api.github.com/users/pjpegion/followers","following_url":"https://api.github.com/users/pjpegion/following{/other_user}","gists_url":"https://api.github.com/users/pjpegion/gists{/gist_id}","starred_url":"https://api.github.com/users/pjpegion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pjpegion/subscriptions","organizations_url":"https://api.github.com/users/pjpegion/orgs","repos_url":"https://api.github.com/users/pjpegion/repos","events_url":"https://api.github.com/users/pjpegion/events{/privacy}","received_events_url":"https://api.github.com/users/pjpegion/received_events","type":"User","site_admin":false},"repo":{"id":215818580,"node_id":"MDEwOlJlcG9zaXRvcnkyMTU4MTg1ODA=","name":"ufs-weather-model","full_name":"pjpegion/ufs-weather-model","private":false,"owner":{"login":"pjpegion","id":38869668,"node_id":"MDQ6VXNlcjM4ODY5NjY4","avatar_url":"https://avatars.githubusercontent.com/u/38869668?v=4","gravatar_id":"","url":"https://api.github.com/users/pjpegion","html_url":"https://github.com/pjpegion","followers_url":"https://api.github.com/users/pjpegion/followers","following_url":"https://api.github.com/users/pjpegion/following{/other_user}","gists_url":"https://api.github.com/users/pjpegion/gists{/gist_id}","starred_url":"https://api.github.com/users/pjpegion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pjpegion/subscriptions","organizations_url":"https://api.github.com/users/pjpegion/orgs","repos_url":"https://api.github.com/users/pjpegion/repos","events_url":"https://api.github.com/users/pjpegion/events{/privacy}","received_events_url":"https://api.github.com/users/pjpegion/received_events","type":"User","site_admin":false},"html_url":"https://github.com/pjpegion/ufs-weather-model","description":"UFS Medium-Range Weather Model","fork":true,"url":"https://api.github.com/repos/pjpegion/ufs-weather-model","forks_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/pjpegion/ufs-weather-model/deployments","created_at":"2019-10-17T14:53:12Z","updated_at":"2020-12-14T15:28:59Z","pushed_at":"2021-02-08T18:26:59Z","git_url":"git://github.com/pjpegion/ufs-weather-model.git","ssh_url":"git@github.com:pjpegion/ufs-weather-model.git","clone_url":"https://github.com/pjpegion/ufs-weather-model.git","svn_url":"https://github.com/pjpegion/ufs-weather-model","homepage":"","size":53774,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":1,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"e3983a03a62a0f77286495ce227a0c94d2b7ee2a","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/372"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/372"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/372/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/372/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/4a980ce73b7c0e1dffe181d5dc766c6c5f8787fb"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383","id":556791374,"node_id":"MDExOlB1bGxSZXF1ZXN0NTU2NzkxMzc0","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/383","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/383.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/383.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/383","number":383,"state":"open","locked":false,"title":"Updatetemplate","user":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"body":"Updates PR template with added PR checklist","created_at":"2021-01-18T12:56:22Z","updated_at":"2021-02-21T15:17:12Z","closed_at":null,"merged_at":null,"merge_commit_sha":"d6d605887f211ae58e28cf0129fbe2529deb07fd","assignee":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"assignees":[{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false}],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":2431324553,"node_id":"MDU6TGFiZWwyNDMxMzI0NTUz","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/No%20Baseline%20Change","name":"No Baseline Change","color":"9AC54D","default":false,"description":"No Baseline Change"}],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/383/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/5021aff59030b0528e41a22de328be1b8c37d819","head":{"label":"DeniseWorthen:updatetemplate","ref":"updatetemplate","sha":"5021aff59030b0528e41a22de328be1b8c37d819","user":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"repo":{"id":235136072,"node_id":"MDEwOlJlcG9zaXRvcnkyMzUxMzYwNzI=","name":"ufs-weather-model","full_name":"DeniseWorthen/ufs-weather-model","private":false,"owner":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"html_url":"https://github.com/DeniseWorthen/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model","forks_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/deployments","created_at":"2020-01-20T15:40:33Z","updated_at":"2021-02-19T20:41:37Z","pushed_at":"2021-02-22T13:27:33Z","git_url":"git://github.com/DeniseWorthen/ufs-weather-model.git","ssh_url":"git@github.com:DeniseWorthen/ufs-weather-model.git","clone_url":"https://github.com/DeniseWorthen/ufs-weather-model.git","svn_url":"https://github.com/DeniseWorthen/ufs-weather-model","homepage":"","size":54877,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":1,"open_issues":0,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"250c2c52f4bb3c27c71aa422dc5ed518d3327e9f","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/383"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/383"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/383/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/383/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/5021aff59030b0528e41a22de328be1b8c37d819"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403","id":565189876,"node_id":"MDExOlB1bGxSZXF1ZXN0NTY1MTg5ODc2","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/403","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/403.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/403.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403","number":403,"state":"open","locked":false,"title":"Feature/rt automation","user":{"login":"BrianCurtis-NOAA","id":64433609,"node_id":"MDQ6VXNlcjY0NDMzNjA5","avatar_url":"https://avatars.githubusercontent.com/u/64433609?v=4","gravatar_id":"","url":"https://api.github.com/users/BrianCurtis-NOAA","html_url":"https://github.com/BrianCurtis-NOAA","followers_url":"https://api.github.com/users/BrianCurtis-NOAA/followers","following_url":"https://api.github.com/users/BrianCurtis-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/BrianCurtis-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/BrianCurtis-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BrianCurtis-NOAA/subscriptions","organizations_url":"https://api.github.com/users/BrianCurtis-NOAA/orgs","repos_url":"https://api.github.com/users/BrianCurtis-NOAA/repos","events_url":"https://api.github.com/users/BrianCurtis-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/BrianCurtis-NOAA/received_events","type":"User","site_admin":false},"body":"## Description\r\nAutomation of Regression Testing\r\n\r\nThis PR adds the directory `auto` to `tests` that contains three files rt_auto.yml, rt_auto.sh and rt_auto.py.\r\n\r\nCode managers will add labels to PR's that are ready for regression testing and eventually a CRON job will run this script every 20 minutes.\r\n\r\n1. rt_auto.py: Python code to be used on our supported HPC's to automatically check all pull requests to a specific repository for a specific label. Each label will contain three parts, for example a label is named `Auto-RT-hera`\r\n A: `Auto` which tells the python code that label is to be processed.\r\n B: `RT` which is the test requested to run (check rt_auto.yml for test labels).\r\n C: `hera` which specifies the machine the test is to be run on.\r\n Currently `Auto-RT-hera` `Auto-RT-orion` `Auto-RT-gaea` are working. I'm looking to get python packages added on Jet first.\r\n1. rt_auto.yml: Specific information the code needs to run\r\n1. rt_auto.sh: a bash script to run the python code, soon to be implemented through cron jobs.\r\n\r\nCurrent functions:\r\n1. Automatically clones the PR repo\r\n1. Automatically runs the full regression test suite\r\n1. Commits/Pushes logs to the PR repo\r\n1. Deletes the cloned repo it created to run tests (NOTE: Does NOT yet delete the stmp run data automatically)\r\n1. Each run, checks for closed PR's and deleted the directory it had created to run those regression tests. (NOTE: Also does not delete the stmp run dir)\r\n\r\nPlanned future functions:\r\n- Automatically delete the STMP run dir\r\n- Automatically create new baselines\r\n- Automatically run full regression test suite on new baselines\r\n- Automatically add new baselines to baseline directory\r\n\r\nDiscussion Topics:\r\n- Currently the planned CRON job implementation will use BrianCurtis-NOAA HPC accounts and GitHub credentials to run. This optimally should move to a bot GitHub account and a generic user account on NOAA HPC's. \r\n\r\n### Issue(s) addressed\r\nFixes #306 \r\n\r\n## Testing\r\nThe use of this new script will be used as its test.\r\n\r\n## Dependencies\r\nNone\r\n\r\nDo PRs in upstream repositories need to be merged first?\r\nNo, these changes are independent of the main functionality of the repo.\r\n","created_at":"2021-02-01T13:39:54Z","updated_at":"2021-02-23T01:58:43Z","closed_at":null,"merged_at":null,"merge_commit_sha":"4556730116ae76a1b52d0574ba238f23dff11cea","assignee":null,"assignees":[],"requested_reviewers":[{"login":"junwang-noaa","id":37633869,"node_id":"MDQ6VXNlcjM3NjMzODY5","avatar_url":"https://avatars.githubusercontent.com/u/37633869?v=4","gravatar_id":"","url":"https://api.github.com/users/junwang-noaa","html_url":"https://github.com/junwang-noaa","followers_url":"https://api.github.com/users/junwang-noaa/followers","following_url":"https://api.github.com/users/junwang-noaa/following{/other_user}","gists_url":"https://api.github.com/users/junwang-noaa/gists{/gist_id}","starred_url":"https://api.github.com/users/junwang-noaa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/junwang-noaa/subscriptions","organizations_url":"https://api.github.com/users/junwang-noaa/orgs","repos_url":"https://api.github.com/users/junwang-noaa/repos","events_url":"https://api.github.com/users/junwang-noaa/events{/privacy}","received_events_url":"https://api.github.com/users/junwang-noaa/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[{"id":2686267722,"node_id":"MDU6TGFiZWwyNjg2MjY3NzIy","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Auto-RT-hera","name":"Auto-RT-hera","color":"5319E7","default":false,"description":"Start Automatic Regression Test on Hera"},{"id":2736875174,"node_id":"MDU6TGFiZWwyNzM2ODc1MTc0","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Auto-RT-jet","name":"Auto-RT-jet","color":"2908C6","default":false,"description":"Start Automatic Regression Test on Jet"}],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/588fe3d4fdb9bce20aabbfd96e359777cd8dcb82","head":{"label":"BrianCurtis-NOAA:feature/rt-automation","ref":"feature/rt-automation","sha":"588fe3d4fdb9bce20aabbfd96e359777cd8dcb82","user":{"login":"BrianCurtis-NOAA","id":64433609,"node_id":"MDQ6VXNlcjY0NDMzNjA5","avatar_url":"https://avatars.githubusercontent.com/u/64433609?v=4","gravatar_id":"","url":"https://api.github.com/users/BrianCurtis-NOAA","html_url":"https://github.com/BrianCurtis-NOAA","followers_url":"https://api.github.com/users/BrianCurtis-NOAA/followers","following_url":"https://api.github.com/users/BrianCurtis-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/BrianCurtis-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/BrianCurtis-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BrianCurtis-NOAA/subscriptions","organizations_url":"https://api.github.com/users/BrianCurtis-NOAA/orgs","repos_url":"https://api.github.com/users/BrianCurtis-NOAA/repos","events_url":"https://api.github.com/users/BrianCurtis-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/BrianCurtis-NOAA/received_events","type":"User","site_admin":false},"repo":{"id":284760811,"node_id":"MDEwOlJlcG9zaXRvcnkyODQ3NjA4MTE=","name":"ufs-weather-model","full_name":"BrianCurtis-NOAA/ufs-weather-model","private":false,"owner":{"login":"BrianCurtis-NOAA","id":64433609,"node_id":"MDQ6VXNlcjY0NDMzNjA5","avatar_url":"https://avatars.githubusercontent.com/u/64433609?v=4","gravatar_id":"","url":"https://api.github.com/users/BrianCurtis-NOAA","html_url":"https://github.com/BrianCurtis-NOAA","followers_url":"https://api.github.com/users/BrianCurtis-NOAA/followers","following_url":"https://api.github.com/users/BrianCurtis-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/BrianCurtis-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/BrianCurtis-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BrianCurtis-NOAA/subscriptions","organizations_url":"https://api.github.com/users/BrianCurtis-NOAA/orgs","repos_url":"https://api.github.com/users/BrianCurtis-NOAA/repos","events_url":"https://api.github.com/users/BrianCurtis-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/BrianCurtis-NOAA/received_events","type":"User","site_admin":false},"html_url":"https://github.com/BrianCurtis-NOAA/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model","forks_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/BrianCurtis-NOAA/ufs-weather-model/deployments","created_at":"2020-08-03T17:14:47Z","updated_at":"2021-02-22T14:15:05Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/BrianCurtis-NOAA/ufs-weather-model.git","ssh_url":"git@github.com:BrianCurtis-NOAA/ufs-weather-model.git","clone_url":"https://github.com/BrianCurtis-NOAA/ufs-weather-model.git","svn_url":"https://github.com/BrianCurtis-NOAA/ufs-weather-model","homepage":"","size":56349,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":1,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"250c2c52f4bb3c27c71aa422dc5ed518d3327e9f","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/403"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/403/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/588fe3d4fdb9bce20aabbfd96e359777cd8dcb82"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404","id":565290227,"node_id":"MDExOlB1bGxSZXF1ZXN0NTY1MjkwMjI3","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/404","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/404.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/404.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/404","number":404,"state":"open","locked":false,"title":"use FMS 2020.04.02 CMakeLists.txt","user":{"login":"mlee03","id":58964324,"node_id":"MDQ6VXNlcjU4OTY0MzI0","avatar_url":"https://avatars.githubusercontent.com/u/58964324?v=4","gravatar_id":"","url":"https://api.github.com/users/mlee03","html_url":"https://github.com/mlee03","followers_url":"https://api.github.com/users/mlee03/followers","following_url":"https://api.github.com/users/mlee03/following{/other_user}","gists_url":"https://api.github.com/users/mlee03/gists{/gist_id}","starred_url":"https://api.github.com/users/mlee03/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mlee03/subscriptions","organizations_url":"https://api.github.com/users/mlee03/orgs","repos_url":"https://api.github.com/users/mlee03/repos","events_url":"https://api.github.com/users/mlee03/events{/privacy}","received_events_url":"https://api.github.com/users/mlee03/received_events","type":"User","site_admin":false},"body":"## Description\r\n\r\nThis PR updates FMS to version ``2020.04.02`` and includes three notable changes:\r\n\r\n1. FMS 2020.04.01 will default to use the newer io implementation called fms2_io. To use the old mpp_io that is in 2019.01.03, the namelist variable ``use_mpp_io=.true.`` is required for interpolator_nml, xgrid_nml, amip_interp_nml, and diag_manager_nml; and ``use_mpp_bug=.true.`` in data_override_nml\r\n\r\n2. An additional option has been implemented in the file section of the diag_table and only affects files using the optional diag_table features. Users can now specify the last field as \"begin\", \"middle\", or \"end\" in order to have more control of the output filename. An example specification is shown below:
\"ocn%4yr%2mo%2dy%2hr\", 6,  \"hours\", 1, \"hours\", \"time\", 6, \"hours\", \"1901 1 1 0 0 0\", 0, \"\", \"begin\"
\r\nGiven the above specification, the file corresponding to the first 6 hours of the run will be named \r\n``ocn_2016_10_03_00.nc`` for \"begin\"\r\n``ocn_2016_10_03_03.nc`` for \"middle\"\r\n ``ocn_2016_10_03_06.nc`` for \"end\"\r\nIf the last field is not specified , \"middle\" will be used as default. More details are provided [here](https://github.com/NOAA-GFDL/FMS/pull/660#issue-552786503)\r\n\r\n3. FMS CMakeLists.txt is incorporated into the UFS Weather Model CMake build.\r\n\r\nTwo metadata differences may be observed with nccmp:\r\n\r\n1. NetCDF file format change from NC_FORMAT_NETCDF4_CLASSIC to NC_FORMAT_64BIT. Users can specify ``netcdf_default_format=\"classic\"`` in ``fms2_io_nml`` to use NC_FORMAT_NETCDF4_CLASSIC.\r\n2. Checksum differences in FV3 32-bit runs due to a bug fix in mpp_chksum.\r\n\r\nOther than these changes, no answer changes are expected.\r\n\r\n### Issue(s) addressed\r\n- fixes #391\r\n\r\n## Testing\r\nLast round of regression tests are running on Orion with Intel/2018.4. Stay-tuned.\r\n\r\n## Dependencies\r\nThis PR depends on \r\n[PR 37](https://github.com/noaa-psd/stochastic_physics/pull/37) in noaa-psd/stochastic_physics. PR 37 has been merged in and this PR points to the updated stochastic_phyics submodule. \r\n[PR 243](https://github.com/NOAA-EMC/fv3atm/pull/243) in NOAA-EMC/fv3atm\r\n\r\n","created_at":"2021-02-01T15:53:33Z","updated_at":"2021-02-03T22:33:47Z","closed_at":null,"merged_at":null,"merge_commit_sha":"4bb0e369f7d0e5d1f48950a8850bd0684b826c36","assignee":null,"assignees":[],"requested_reviewers":[{"login":"jiandewang","id":14180427,"node_id":"MDQ6VXNlcjE0MTgwNDI3","avatar_url":"https://avatars.githubusercontent.com/u/14180427?v=4","gravatar_id":"","url":"https://api.github.com/users/jiandewang","html_url":"https://github.com/jiandewang","followers_url":"https://api.github.com/users/jiandewang/followers","following_url":"https://api.github.com/users/jiandewang/following{/other_user}","gists_url":"https://api.github.com/users/jiandewang/gists{/gist_id}","starred_url":"https://api.github.com/users/jiandewang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jiandewang/subscriptions","organizations_url":"https://api.github.com/users/jiandewang/orgs","repos_url":"https://api.github.com/users/jiandewang/repos","events_url":"https://api.github.com/users/jiandewang/events{/privacy}","received_events_url":"https://api.github.com/users/jiandewang/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/404/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/8c3377890a063bfc218b7676232fa9f2afe6b717","head":{"label":"mlee03:fms/2020.04.02","ref":"fms/2020.04.02","sha":"8c3377890a063bfc218b7676232fa9f2afe6b717","user":{"login":"mlee03","id":58964324,"node_id":"MDQ6VXNlcjU4OTY0MzI0","avatar_url":"https://avatars.githubusercontent.com/u/58964324?v=4","gravatar_id":"","url":"https://api.github.com/users/mlee03","html_url":"https://github.com/mlee03","followers_url":"https://api.github.com/users/mlee03/followers","following_url":"https://api.github.com/users/mlee03/following{/other_user}","gists_url":"https://api.github.com/users/mlee03/gists{/gist_id}","starred_url":"https://api.github.com/users/mlee03/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mlee03/subscriptions","organizations_url":"https://api.github.com/users/mlee03/orgs","repos_url":"https://api.github.com/users/mlee03/repos","events_url":"https://api.github.com/users/mlee03/events{/privacy}","received_events_url":"https://api.github.com/users/mlee03/received_events","type":"User","site_admin":false},"repo":{"id":332761705,"node_id":"MDEwOlJlcG9zaXRvcnkzMzI3NjE3MDU=","name":"ufs-weather-model","full_name":"mlee03/ufs-weather-model","private":false,"owner":{"login":"mlee03","id":58964324,"node_id":"MDQ6VXNlcjU4OTY0MzI0","avatar_url":"https://avatars.githubusercontent.com/u/58964324?v=4","gravatar_id":"","url":"https://api.github.com/users/mlee03","html_url":"https://github.com/mlee03","followers_url":"https://api.github.com/users/mlee03/followers","following_url":"https://api.github.com/users/mlee03/following{/other_user}","gists_url":"https://api.github.com/users/mlee03/gists{/gist_id}","starred_url":"https://api.github.com/users/mlee03/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mlee03/subscriptions","organizations_url":"https://api.github.com/users/mlee03/orgs","repos_url":"https://api.github.com/users/mlee03/repos","events_url":"https://api.github.com/users/mlee03/events{/privacy}","received_events_url":"https://api.github.com/users/mlee03/received_events","type":"User","site_admin":false},"html_url":"https://github.com/mlee03/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/mlee03/ufs-weather-model","forks_url":"https://api.github.com/repos/mlee03/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/mlee03/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mlee03/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mlee03/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/mlee03/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/mlee03/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/mlee03/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/mlee03/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/mlee03/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/mlee03/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/mlee03/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mlee03/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mlee03/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/mlee03/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mlee03/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/mlee03/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/mlee03/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/mlee03/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/mlee03/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/mlee03/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/mlee03/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/mlee03/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/mlee03/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/mlee03/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/mlee03/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/mlee03/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mlee03/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/mlee03/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mlee03/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/mlee03/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/mlee03/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/mlee03/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/mlee03/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mlee03/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/mlee03/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/mlee03/ufs-weather-model/deployments","created_at":"2021-01-25T13:47:51Z","updated_at":"2021-01-25T13:47:53Z","pushed_at":"2021-02-11T12:40:35Z","git_url":"git://github.com/mlee03/ufs-weather-model.git","ssh_url":"git@github.com:mlee03/ufs-weather-model.git","clone_url":"https://github.com/mlee03/ufs-weather-model.git","svn_url":"https://github.com/mlee03/ufs-weather-model","homepage":"","size":56676,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"e3983a03a62a0f77286495ce227a0c94d2b7ee2a","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/404"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/404"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/404/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/404/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/8c3377890a063bfc218b7676232fa9f2afe6b717"}},"author_association":"CONTRIBUTOR","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418","id":574412964,"node_id":"MDExOlB1bGxSZXF1ZXN0NTc0NDEyOTY0","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/418","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/418.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/418.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/418","number":418,"state":"open","locked":false,"title":"Update ccpp-physics. Make RRTMGP thread safe","user":{"login":"dustinswales","id":13949033,"node_id":"MDQ6VXNlcjEzOTQ5MDMz","avatar_url":"https://avatars.githubusercontent.com/u/13949033?v=4","gravatar_id":"","url":"https://api.github.com/users/dustinswales","html_url":"https://github.com/dustinswales","followers_url":"https://api.github.com/users/dustinswales/followers","following_url":"https://api.github.com/users/dustinswales/following{/other_user}","gists_url":"https://api.github.com/users/dustinswales/gists{/gist_id}","starred_url":"https://api.github.com/users/dustinswales/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dustinswales/subscriptions","organizations_url":"https://api.github.com/users/dustinswales/orgs","repos_url":"https://api.github.com/users/dustinswales/repos","events_url":"https://api.github.com/users/dustinswales/events{/privacy}","received_events_url":"https://api.github.com/users/dustinswales/received_events","type":"User","site_admin":false},"body":"This PR contains several changes to the initialization and setup of the RRTMGP radiation scheme to allow for use across multiple openMP threads.\r\n*) Moved Interstitial RRTMGP DDTs (ty_rrtmgp_gas_optics, ty_cloud_optics) to static fields defined during initialization in module memory.\r\n*) Add \"$omp critical\" statements around the calling type-bound procedures during initialization.\r\n*) Move allocation of ty_gas_conc from Interstitial to GFS_typedefs. Initialize ty_gas_concs for all blocks during initialization.\r\n\r\nThis issue was brought to our attention by @yangfanglin and Qingfu Liu at EMC while testing RRTMGP in high-resolution cases, which require multiple threads.\r\n\r\nThe GP regression tests on hera using Intel were successful.\r\nThere are no changes to the baselines\r\n\r\nWaiting on\r\nhttps://github.com/NCAR/ccpp-physics/pull/568\r\nhttps://github.com/NOAA-EMC/fv3atm/pull/247","created_at":"2021-02-16T19:06:50Z","updated_at":"2021-02-18T21:37:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":"92731b701323b14bab0e47581e0adebfe0c83079","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/418/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ccb65dacf6f3bc6289fff6bee5413969eb75b06e","head":{"label":"dustinswales:hotfix_GPthreading","ref":"hotfix_GPthreading","sha":"ccb65dacf6f3bc6289fff6bee5413969eb75b06e","user":{"login":"dustinswales","id":13949033,"node_id":"MDQ6VXNlcjEzOTQ5MDMz","avatar_url":"https://avatars.githubusercontent.com/u/13949033?v=4","gravatar_id":"","url":"https://api.github.com/users/dustinswales","html_url":"https://github.com/dustinswales","followers_url":"https://api.github.com/users/dustinswales/followers","following_url":"https://api.github.com/users/dustinswales/following{/other_user}","gists_url":"https://api.github.com/users/dustinswales/gists{/gist_id}","starred_url":"https://api.github.com/users/dustinswales/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dustinswales/subscriptions","organizations_url":"https://api.github.com/users/dustinswales/orgs","repos_url":"https://api.github.com/users/dustinswales/repos","events_url":"https://api.github.com/users/dustinswales/events{/privacy}","received_events_url":"https://api.github.com/users/dustinswales/received_events","type":"User","site_admin":false},"repo":{"id":223220247,"node_id":"MDEwOlJlcG9zaXRvcnkyMjMyMjAyNDc=","name":"ufs-weather-model","full_name":"dustinswales/ufs-weather-model","private":false,"owner":{"login":"dustinswales","id":13949033,"node_id":"MDQ6VXNlcjEzOTQ5MDMz","avatar_url":"https://avatars.githubusercontent.com/u/13949033?v=4","gravatar_id":"","url":"https://api.github.com/users/dustinswales","html_url":"https://github.com/dustinswales","followers_url":"https://api.github.com/users/dustinswales/followers","following_url":"https://api.github.com/users/dustinswales/following{/other_user}","gists_url":"https://api.github.com/users/dustinswales/gists{/gist_id}","starred_url":"https://api.github.com/users/dustinswales/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dustinswales/subscriptions","organizations_url":"https://api.github.com/users/dustinswales/orgs","repos_url":"https://api.github.com/users/dustinswales/repos","events_url":"https://api.github.com/users/dustinswales/events{/privacy}","received_events_url":"https://api.github.com/users/dustinswales/received_events","type":"User","site_admin":false},"html_url":"https://github.com/dustinswales/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/dustinswales/ufs-weather-model","forks_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/dustinswales/ufs-weather-model/deployments","created_at":"2019-11-21T16:45:23Z","updated_at":"2020-06-29T17:16:49Z","pushed_at":"2021-02-18T21:36:59Z","git_url":"git://github.com/dustinswales/ufs-weather-model.git","ssh_url":"git@github.com:dustinswales/ufs-weather-model.git","clone_url":"https://github.com/dustinswales/ufs-weather-model.git","svn_url":"https://github.com/dustinswales/ufs-weather-model","homepage":"","size":53842,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"gpl-3.0","name":"GNU General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"d6a0b8cf636b92f821302ec152803ea80806ba49","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/418"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/418"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/418/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/418/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ccb65dacf6f3bc6289fff6bee5413969eb75b06e"}},"author_association":"CONTRIBUTOR","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422","id":576044955,"node_id":"MDExOlB1bGxSZXF1ZXN0NTc2MDQ0OTU1","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/422","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/422.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/422.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/422","number":422,"state":"open","locked":false,"title":"Use aws ec2 for CI test","user":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"body":"### Issue(s) addressed\r\n#307 \r\n\r\n## Testing\r\n\r\nChanges in this PR are only related to CI (tests/ci directory) and Github Actions (.github/workflows directory), with only minor changes in default_vars.sh, run_test.sh, and utest.\r\n\r\nThe new CI tests were tested here: https://github.com/MinsukJi-NOAA/ufs-weather-model/actions/runs/579193301\r\n\r\n## Dependencies\r\n\r\nNo dependencies.","created_at":"2021-02-18T22:41:38Z","updated_at":"2021-02-18T22:41:38Z","closed_at":null,"merged_at":null,"merge_commit_sha":"cc937132015248d3a7ea3e0ba8cb7636e5a49495","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/422/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ad0c6cc61c83b6eaae63ddfafe1a1374c3821fe1","head":{"label":"MinsukJi-NOAA:feature/ci-aws","ref":"feature/ci-aws","sha":"ad0c6cc61c83b6eaae63ddfafe1a1374c3821fe1","user":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"repo":{"id":238745929,"node_id":"MDEwOlJlcG9zaXRvcnkyMzg3NDU5Mjk=","name":"ufs-weather-model","full_name":"MinsukJi-NOAA/ufs-weather-model","private":false,"owner":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"html_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model","forks_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/deployments","created_at":"2020-02-06T17:32:41Z","updated_at":"2021-02-18T22:08:04Z","pushed_at":"2021-02-22T20:56:19Z","git_url":"git://github.com/MinsukJi-NOAA/ufs-weather-model.git","ssh_url":"git@github.com:MinsukJi-NOAA/ufs-weather-model.git","clone_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model.git","svn_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model","homepage":"","size":55062,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":1,"open_issues":0,"watchers":0,"default_branch":"feature/ci-aws"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"8dabdb4489074375212cc5be4fb6e3a6f71cc590","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/422"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/422"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/422/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/422/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ad0c6cc61c83b6eaae63ddfafe1a1374c3821fe1"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425","id":577111559,"node_id":"MDExOlB1bGxSZXF1ZXN0NTc3MTExNTU5","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/425","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/425.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/425.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/425","number":425,"state":"open","locked":false,"title":"Move Noah MP init to CCPP and add/update Noah MP regression tests","user":{"login":"climbfuji","id":8006981,"node_id":"MDQ6VXNlcjgwMDY5ODE=","avatar_url":"https://avatars.githubusercontent.com/u/8006981?v=4","gravatar_id":"","url":"https://api.github.com/users/climbfuji","html_url":"https://github.com/climbfuji","followers_url":"https://api.github.com/users/climbfuji/followers","following_url":"https://api.github.com/users/climbfuji/following{/other_user}","gists_url":"https://api.github.com/users/climbfuji/gists{/gist_id}","starred_url":"https://api.github.com/users/climbfuji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/climbfuji/subscriptions","organizations_url":"https://api.github.com/users/climbfuji/orgs","repos_url":"https://api.github.com/users/climbfuji/repos","events_url":"https://api.github.com/users/climbfuji/events{/privacy}","received_events_url":"https://api.github.com/users/climbfuji/received_events","type":"User","site_admin":false},"body":"## Description\r\n\r\n# PLACEHOLDER\r\n\r\n(Instructions: this, and all subsequent sections of text should be removed and filled in as appropriate.)\r\nProvide a detailed description of what this PR does.\r\nWhat bug does it fix, or what feature does it add?\r\nIs a change of answers expected from this PR?\r\nAre any library updates included in this PR (modulefiles etc.)?\r\n\r\n### Issue(s) addressed\r\n\r\nLink the issues to be closed with this PR, whether in this repository, or in another repository.\r\n(Remember, issues should always be created before starting work on a PR branch!)\r\n- fixes #\r\n- fixes noaa-emc/fv3atm/issues/\r\n\r\n## Testing\r\n\r\nHow were these changes tested?\r\nWhat compilers / HPCs was it tested with?\r\nAre the changes covered by regression tests? (If not, why? Do new tests need to be added?)\r\nHave regression tests and unit tests (utests) been run? On which platforms and with which compilers? (Note that unit tests can only be run on tier-1 platforms)\r\n\r\n## Dependencies\r\n\r\nIf testing this branch requires non-default branches in other repositories, list them.\r\nThose branches should have matching names (ideally)\r\n\r\nDo PRs in upstream repositories need to be merged first?\r\nIf so add the \"waiting for other repos\" label and list the upstream PRs\r\n- waiting on noaa-emc/nems/pull/\r\n- waiting on noaa-emc/fv3atm/pull/\r\n","created_at":"2021-02-21T13:26:25Z","updated_at":"2021-02-22T23:45:38Z","closed_at":null,"merged_at":null,"merge_commit_sha":"022235eb81d3278c63fc5e8abd257805fceed0a9","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":true,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/425/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ac99b2500534dc8528b84424c562769317cceb2f","head":{"label":"climbfuji:noahmp_init_in_ccpp","ref":"noahmp_init_in_ccpp","sha":"ac99b2500534dc8528b84424c562769317cceb2f","user":{"login":"climbfuji","id":8006981,"node_id":"MDQ6VXNlcjgwMDY5ODE=","avatar_url":"https://avatars.githubusercontent.com/u/8006981?v=4","gravatar_id":"","url":"https://api.github.com/users/climbfuji","html_url":"https://github.com/climbfuji","followers_url":"https://api.github.com/users/climbfuji/followers","following_url":"https://api.github.com/users/climbfuji/following{/other_user}","gists_url":"https://api.github.com/users/climbfuji/gists{/gist_id}","starred_url":"https://api.github.com/users/climbfuji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/climbfuji/subscriptions","organizations_url":"https://api.github.com/users/climbfuji/orgs","repos_url":"https://api.github.com/users/climbfuji/repos","events_url":"https://api.github.com/users/climbfuji/events{/privacy}","received_events_url":"https://api.github.com/users/climbfuji/received_events","type":"User","site_admin":false},"repo":{"id":215429735,"node_id":"MDEwOlJlcG9zaXRvcnkyMTU0Mjk3MzU=","name":"ufs-weather-model","full_name":"climbfuji/ufs-weather-model","private":false,"owner":{"login":"climbfuji","id":8006981,"node_id":"MDQ6VXNlcjgwMDY5ODE=","avatar_url":"https://avatars.githubusercontent.com/u/8006981?v=4","gravatar_id":"","url":"https://api.github.com/users/climbfuji","html_url":"https://github.com/climbfuji","followers_url":"https://api.github.com/users/climbfuji/followers","following_url":"https://api.github.com/users/climbfuji/following{/other_user}","gists_url":"https://api.github.com/users/climbfuji/gists{/gist_id}","starred_url":"https://api.github.com/users/climbfuji/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/climbfuji/subscriptions","organizations_url":"https://api.github.com/users/climbfuji/orgs","repos_url":"https://api.github.com/users/climbfuji/repos","events_url":"https://api.github.com/users/climbfuji/events{/privacy}","received_events_url":"https://api.github.com/users/climbfuji/received_events","type":"User","site_admin":false},"html_url":"https://github.com/climbfuji/ufs-weather-model","description":null,"fork":true,"url":"https://api.github.com/repos/climbfuji/ufs-weather-model","forks_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/climbfuji/ufs-weather-model/deployments","created_at":"2019-10-16T01:30:25Z","updated_at":"2020-05-13T13:33:06Z","pushed_at":"2021-02-22T23:45:37Z","git_url":"git://github.com/climbfuji/ufs-weather-model.git","ssh_url":"git@github.com:climbfuji/ufs-weather-model.git","clone_url":"https://github.com/climbfuji/ufs-weather-model.git","svn_url":"https://github.com/climbfuji/ufs-weather-model","homepage":null,"size":59574,"stargazers_count":0,"watchers_count":0,"language":"C","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"gsd/develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"250c2c52f4bb3c27c71aa422dc5ed518d3327e9f","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/425"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/425"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/425/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/425/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/ac99b2500534dc8528b84424c562769317cceb2f"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426","id":577127006,"node_id":"MDExOlB1bGxSZXF1ZXN0NTc3MTI3MDA2","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/426","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/426.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/426.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/426","number":426,"state":"open","locked":false,"title":"correct benchmark diag_tables for coupled model configurations","user":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"body":"## Description\r\n\r\nAdds configuration variable DIAG_TABLE to allow different diag_tables to be set for the coupled model depending on configuration: non-benchmark, benchmark and benchmark-v16.\r\n\r\nThe benchmark and benchmark-v16 diag tables are identical except for the removal of the ``grid_spec``, ``atmos_4xdaily ``and ``atmos_static files``. The benchmark-v16 diag table differs from the diag_table_gfsv16 in the input data directory ``FV3_input_data384`` by the ocean output fields.\r\n\r\n### Issue(s) addressed\r\n\r\n- fixes #412 \r\n- Adds cpld_bmarkfrac_v16_35d (not used in RT testing) \r\n\r\n## Testing\r\n\r\nBenchmark coupled baselines on Hera change because of the difference in the fields written to the phyf and dynf files. Restart files for all components are b4b with current baselines for benchmark baselines. Non-benchmark baselines for the coupled model reproduce existing baselines.\r\n\r\n","created_at":"2021-02-21T15:10:43Z","updated_at":"2021-02-22T10:00:53Z","closed_at":null,"merged_at":null,"merge_commit_sha":"48e87c2f0270cbcca318d78194c9ab1e4739b366","assignee":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"assignees":[{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false}],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":2431326682,"node_id":"MDU6TGFiZWwyNDMxMzI2Njgy","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Baseline%20Change","name":"Baseline Change","color":"C35F30","default":false,"description":"Baseline Change"}],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/426/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/c1af1a2037e4d4872e66eaec04d88e5bf48977a4","head":{"label":"DeniseWorthen:feature/diagtables","ref":"feature/diagtables","sha":"c1af1a2037e4d4872e66eaec04d88e5bf48977a4","user":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"repo":{"id":235136072,"node_id":"MDEwOlJlcG9zaXRvcnkyMzUxMzYwNzI=","name":"ufs-weather-model","full_name":"DeniseWorthen/ufs-weather-model","private":false,"owner":{"login":"DeniseWorthen","id":40498404,"node_id":"MDQ6VXNlcjQwNDk4NDA0","avatar_url":"https://avatars.githubusercontent.com/u/40498404?v=4","gravatar_id":"","url":"https://api.github.com/users/DeniseWorthen","html_url":"https://github.com/DeniseWorthen","followers_url":"https://api.github.com/users/DeniseWorthen/followers","following_url":"https://api.github.com/users/DeniseWorthen/following{/other_user}","gists_url":"https://api.github.com/users/DeniseWorthen/gists{/gist_id}","starred_url":"https://api.github.com/users/DeniseWorthen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DeniseWorthen/subscriptions","organizations_url":"https://api.github.com/users/DeniseWorthen/orgs","repos_url":"https://api.github.com/users/DeniseWorthen/repos","events_url":"https://api.github.com/users/DeniseWorthen/events{/privacy}","received_events_url":"https://api.github.com/users/DeniseWorthen/received_events","type":"User","site_admin":false},"html_url":"https://github.com/DeniseWorthen/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model","forks_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/DeniseWorthen/ufs-weather-model/deployments","created_at":"2020-01-20T15:40:33Z","updated_at":"2021-02-19T20:41:37Z","pushed_at":"2021-02-22T13:27:33Z","git_url":"git://github.com/DeniseWorthen/ufs-weather-model.git","ssh_url":"git@github.com:DeniseWorthen/ufs-weather-model.git","clone_url":"https://github.com/DeniseWorthen/ufs-weather-model.git","svn_url":"https://github.com/DeniseWorthen/ufs-weather-model","homepage":"","size":54877,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":1,"open_issues":0,"watchers":0,"default_branch":"develop"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"250c2c52f4bb3c27c71aa422dc5ed518d3327e9f","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/426"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/426"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/426/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/426/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/c1af1a2037e4d4872e66eaec04d88e5bf48977a4"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null},{"url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431","id":577935932,"node_id":"MDExOlB1bGxSZXF1ZXN0NTc3OTM1OTMy","html_url":"https://github.com/ufs-community/ufs-weather-model/pull/431","diff_url":"https://github.com/ufs-community/ufs-weather-model/pull/431.diff","patch_url":"https://github.com/ufs-community/ufs-weather-model/pull/431.patch","issue_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/431","number":431,"state":"open","locked":false,"title":"Move bm_ic directory out of input-data directory","user":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"body":"### Issue(s) addressed\r\n\r\nIssue #430 \r\n\r\n## Testing\r\n\r\nRun a 35-day test on Hera and Orion to make sure copying of IC data between run directory and bm_ic directory works.\r\n\r\n## Dependencies\r\n\r\nNo dependencies.\r\n","created_at":"2021-02-22T20:59:25Z","updated_at":"2021-02-22T20:59:25Z","closed_at":null,"merged_at":null,"merge_commit_sha":"59572cf4c0873af91a4b0e35fcc61f0b4d55b424","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431/commits","review_comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431/comments","review_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/431/comments","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/43db72ea271a6c5cd27615095b78e0bf33bf9145","head":{"label":"MinsukJi-NOAA:feature/35d_bm_ic","ref":"feature/35d_bm_ic","sha":"43db72ea271a6c5cd27615095b78e0bf33bf9145","user":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"repo":{"id":238745929,"node_id":"MDEwOlJlcG9zaXRvcnkyMzg3NDU5Mjk=","name":"ufs-weather-model","full_name":"MinsukJi-NOAA/ufs-weather-model","private":false,"owner":{"login":"MinsukJi-NOAA","id":57227195,"node_id":"MDQ6VXNlcjU3MjI3MTk1","avatar_url":"https://avatars.githubusercontent.com/u/57227195?v=4","gravatar_id":"","url":"https://api.github.com/users/MinsukJi-NOAA","html_url":"https://github.com/MinsukJi-NOAA","followers_url":"https://api.github.com/users/MinsukJi-NOAA/followers","following_url":"https://api.github.com/users/MinsukJi-NOAA/following{/other_user}","gists_url":"https://api.github.com/users/MinsukJi-NOAA/gists{/gist_id}","starred_url":"https://api.github.com/users/MinsukJi-NOAA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MinsukJi-NOAA/subscriptions","organizations_url":"https://api.github.com/users/MinsukJi-NOAA/orgs","repos_url":"https://api.github.com/users/MinsukJi-NOAA/repos","events_url":"https://api.github.com/users/MinsukJi-NOAA/events{/privacy}","received_events_url":"https://api.github.com/users/MinsukJi-NOAA/received_events","type":"User","site_admin":false},"html_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model","description":"UFS Weather Model","fork":true,"url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model","forks_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/deployments","created_at":"2020-02-06T17:32:41Z","updated_at":"2021-02-18T22:08:04Z","pushed_at":"2021-02-22T20:56:19Z","git_url":"git://github.com/MinsukJi-NOAA/ufs-weather-model.git","ssh_url":"git@github.com:MinsukJi-NOAA/ufs-weather-model.git","clone_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model.git","svn_url":"https://github.com/MinsukJi-NOAA/ufs-weather-model","homepage":"","size":55062,"stargazers_count":0,"watchers_count":0,"language":"Shell","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":1,"open_issues":0,"watchers":0,"default_branch":"feature/ci-aws"}},"base":{"label":"ufs-community:develop","ref":"develop","sha":"250c2c52f4bb3c27c71aa422dc5ed518d3327e9f","user":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"repo":{"id":215322081,"node_id":"MDEwOlJlcG9zaXRvcnkyMTUzMjIwODE=","name":"ufs-weather-model","full_name":"ufs-community/ufs-weather-model","private":false,"owner":{"login":"ufs-community","id":49994907,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5OTk0OTA3","avatar_url":"https://avatars.githubusercontent.com/u/49994907?v=4","gravatar_id":"","url":"https://api.github.com/users/ufs-community","html_url":"https://github.com/ufs-community","followers_url":"https://api.github.com/users/ufs-community/followers","following_url":"https://api.github.com/users/ufs-community/following{/other_user}","gists_url":"https://api.github.com/users/ufs-community/gists{/gist_id}","starred_url":"https://api.github.com/users/ufs-community/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ufs-community/subscriptions","organizations_url":"https://api.github.com/users/ufs-community/orgs","repos_url":"https://api.github.com/users/ufs-community/repos","events_url":"https://api.github.com/users/ufs-community/events{/privacy}","received_events_url":"https://api.github.com/users/ufs-community/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ufs-community/ufs-weather-model","description":"UFS Weather Model","fork":false,"url":"https://api.github.com/repos/ufs-community/ufs-weather-model","forks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/forks","keys_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/teams","hooks_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/hooks","issue_events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/events{/number}","events_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/events","assignees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/assignees{/user}","branches_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/branches{/branch}","tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/tags","blobs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/{sha}","languages_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/languages","stargazers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/stargazers","contributors_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contributors","subscribers_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscribers","subscription_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/subscription","commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/contents/{+path}","compare_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/merges","archive_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/downloads","issues_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues{/number}","pulls_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls{/number}","milestones_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/milestones{/number}","notifications_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels{/name}","releases_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/releases{/id}","deployments_url":"https://api.github.com/repos/ufs-community/ufs-weather-model/deployments","created_at":"2019-10-15T14:38:48Z","updated_at":"2021-02-19T19:49:26Z","pushed_at":"2021-02-23T01:57:52Z","git_url":"git://github.com/ufs-community/ufs-weather-model.git","ssh_url":"git@github.com:ufs-community/ufs-weather-model.git","clone_url":"https://github.com/ufs-community/ufs-weather-model.git","svn_url":"https://github.com/ufs-community/ufs-weather-model","homepage":"","size":56803,"stargazers_count":48,"watchers_count":48,"language":"Shell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":118,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":56,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":118,"open_issues":56,"watchers":48,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431"},"html":{"href":"https://github.com/ufs-community/ufs-weather-model/pull/431"},"issue":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/431"},"comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/issues/431/comments"},"review_comments":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431/comments"},"review_comment":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/431/commits"},"statuses":{"href":"https://api.github.com/repos/ufs-community/ufs-weather-model/statuses/43db72ea271a6c5cd27615095b78e0bf33bf9145"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null}] -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/364/labels HTTP/1.1" 200 2 -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/364/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:05 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Thu, 18 Feb 2021 21:09:16 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4981', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '19', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:79644D:11D28EB:6034621D'} [] -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/372/labels HTTP/1.1" 200 2 -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/372/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:05 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Mon, 22 Feb 2021 17:18:21 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4980', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '20', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:79645A:11D2920:6034621D'} [] -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/383/labels HTTP/1.1" 200 None -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/383/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:05 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"5a8d63322775f74b8cec5bf8363459aea5c46a303fe961a56df68849bcd57b5f"', 'last-modified': 'Sun, 21 Feb 2021 15:17:12 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4979', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '21', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:79645E:11D292E:6034621D'} [{"id":2431324553,"node_id":"MDU6TGFiZWwyNDMxMzI0NTUz","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/No%20Baseline%20Change","name":"No Baseline Change","color":"9AC54D","default":false,"description":"No Baseline Change"}] -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/403/labels HTTP/1.1" 200 None -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:06 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"4fcf3ae5b4c61e55530f73c0bea52fc167d2e1aaca23e3c088318e21d239f23a"', 'last-modified': 'Tue, 23 Feb 2021 01:58:43 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4978', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '22', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:796465:11D2947:6034621D'} [{"id":2686267722,"node_id":"MDU6TGFiZWwyNjg2MjY3NzIy","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Auto-RT-hera","name":"Auto-RT-hera","color":"5319E7","default":false,"description":"Start Automatic Regression Test on Hera"},{"id":2736875174,"node_id":"MDU6TGFiZWwyNzM2ODc1MTc0","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Auto-RT-jet","name":"Auto-RT-jet","color":"2908C6","default":false,"description":"Start Automatic Regression Test on Jet"}] -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/404/labels HTTP/1.1" 200 2 -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/404/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:06 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Thu, 11 Feb 2021 12:38:13 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4977', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '23', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:796473:11D2985:6034621E'} [] -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/418/labels HTTP/1.1" 200 2 -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/418/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:07 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Thu, 18 Feb 2021 21:37:00 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4976', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '24', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:796488:11D29B7:6034621E'} [] -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/422/labels HTTP/1.1" 200 2 -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/422/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:07 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Thu, 18 Feb 2021 22:41:38 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4975', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '25', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:796491:11D29DA:6034621F'} [] -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/425/labels HTTP/1.1" 200 2 -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/425/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:07 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Mon, 22 Feb 2021 23:45:38 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4974', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '26', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:796497:11D29F6:6034621F'} [] -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/426/labels HTTP/1.1" 200 None -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/426/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:07 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"13b24385614d4e40adf61ba80051baf16415017cf9014c52f5bb73ae9b2e5ad3"', 'last-modified': 'Mon, 22 Feb 2021 10:00:53 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4973', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '27', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:7964A8:11D2A1F:6034621F'} [{"id":2431326682,"node_id":"MDU6TGFiZWwyNDMxMzI2Njgy","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Baseline%20Change","name":"Baseline Change","color":"C35F30","default":false,"description":"Baseline Change"}] -DEBUG:urllib3.connectionpool:https://api.github.com:443 "GET /repos/ufs-community/ufs-weather-model/issues/431/labels HTTP/1.1" 200 2 -DEBUG:github.Requester:GET https://api.github.com/repos/ufs-community/ufs-weather-model/issues/431/labels {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:08 GMT', 'content-type': 'application/json; charset=utf-8', 'content-length': '2', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': '"7693fbed45225af47d845e98d9c20e8a211944fce5cb85a7c7e7ecf6405dd07b"', 'last-modified': 'Mon, 22 Feb 2021 20:59:25 GMT', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': 'repo', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4972', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '28', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'x-github-request-id': '9A5E:4BB5:7964AD:11D2A2E:6034621F'} [] -INFO:MAIN:Adding all jobs to an object list and running them. -INFO:MAIN:Starting Job: <__main__.Job object at 0x7eff3cb57c70> -DEBUG:MAIN:Calling remove_pr_label -INFO:JOB:Removing Label: Label(name="Auto-RT-hera") -DEBUG:urllib3.connectionpool:https://api.github.com:443 "DELETE /repos/ufs-community/ufs-weather-model/issues/403/labels/Auto-RT-hera HTTP/1.1" 200 None -DEBUG:github.Requester:DELETE https://api.github.com/repos/ufs-community/ufs-weather-model/issues/403/labels/Auto-RT-hera {'Authorization': 'token (oauth token removed)', 'User-Agent': 'PyGithub/Python'} None ==> 200 {'server': 'GitHub.com', 'date': 'Tue, 23 Feb 2021 02:02:08 GMT', 'content-type': 'application/json; charset=utf-8', 'transfer-encoding': 'chunked', 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With', 'etag': 'W/"2cbebc602938bc2d07802dad5d0c20d25cd8a91b084f57c73d2cbff233c774a2"', 'x-oauth-scopes': 'delete:packages, notifications, read:discussion, read:enterprise, read:gpg_key, read:org, repo, user, workflow, write:packages', 'x-accepted-oauth-scopes': '', 'x-github-media-type': 'github.v3; format=json', 'x-ratelimit-limit': '5000', 'x-ratelimit-remaining': '4971', 'x-ratelimit-reset': '1614048126', 'x-ratelimit-used': '29', 'access-control-expose-headers': 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset', 'access-control-allow-origin': '*', 'strict-transport-security': 'max-age=31536000; includeSubdomains; preload', 'x-frame-options': 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1; mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin', 'content-security-policy': "default-src 'none'", 'content-encoding': 'gzip', 'x-github-request-id': '9A5E:4BB5:7964B7:11D2A61:60346220'} [{"id":2736875174,"node_id":"MDU6TGFiZWwyNzM2ODc1MTc0","url":"https://api.github.com/repos/ufs-community/ufs-weather-model/labels/Auto-RT-jet","name":"Auto-RT-jet","color":"2908C6","default":false,"description":"Start Automatic Regression Test on Jet"}] -DEBUG:MAIN:Calling clone_pr_repo -INFO:JOB/CLONE_PR_REPO:Starting clone of https://6313aefd9c7e3baeae932bf5d8418f27f21abd6e@github.com/BrianCurtis-NOAA/ufs-weather-model -INFO:JOB/CLONE_PR_REPO:Running "mkdir -p "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208"" in location "/scratch1/NCEPDEV/nems/Brian.Curtis/test" -INFO:JOB/CLONE_PR_REPO:Finished running: mkdir -p "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208" -DEBUG:JOB/CLONE_PR_REPO:stdout: b'' -DEBUG:JOB/CLONE_PR_REPO:stderr: None -INFO:JOB/CLONE_PR_REPO:Running "git clone -b feature/rt-automation https://6313aefd9c7e3baeae932bf5d8418f27f21abd6e@github.com/BrianCurtis-NOAA/ufs-weather-model" in location "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208" -INFO:JOB/CLONE_PR_REPO:Finished running: git clone -b feature/rt-automation https://6313aefd9c7e3baeae932bf5d8418f27f21abd6e@github.com/BrianCurtis-NOAA/ufs-weather-model -DEBUG:JOB/CLONE_PR_REPO:stdout: b"Cloning into 'ufs-weather-model'...\n" -DEBUG:JOB/CLONE_PR_REPO:stderr: None -INFO:JOB/CLONE_PR_REPO:Running "git submodule update --init --recursive" in location "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model" -INFO:JOB/CLONE_PR_REPO:Finished running: git submodule update --init --recursive -DEBUG:JOB/CLONE_PR_REPO:stdout: b"Submodule 'CICE' (https://github.com/NOAA-EMC/CICE) registered for path 'CICE-interface/CICE'\nSubmodule 'CMEPS' (https://github.com/NOAA-EMC/CMEPS.git) registered for path 'CMEPS-interface/CMEPS'\nSubmodule 'CMakeModules' (https://github.com/NOAA-EMC/CMakeModules) registered for path 'CMakeModules'\nSubmodule 'DATM' (https://github.com/NOAA-EMC/NEMSdatm) registered for path 'DATM'\nSubmodule 'FMS' (https://github.com/NOAA-GFDL/FMS) registered for path 'FMS'\nSubmodule 'FV3' (https://github.com/NOAA-EMC/fv3atm) registered for path 'FV3'\nSubmodule 'MOM6' (https://github.com/NOAA-EMC/MOM6) registered for path 'MOM6-interface/MOM6'\nSubmodule 'NEMS' (https://github.com/NOAA-EMC/NEMS) registered for path 'NEMS'\nSubmodule 'WW3' (https://github.com/NOAA-EMC/WW3) registered for path 'WW3'\nSubmodule 'stochastic_physics' (https://github.com/noaa-psd/stochastic_physics) registered for path 'stochastic_physics'\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/CICE-interface/CICE'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/CMEPS-interface/CMEPS'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/CMakeModules'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/DATM'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FMS'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FV3'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/MOM6-interface/MOM6'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/NEMS'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/WW3'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/stochastic_physics'...\nSubmodule path 'CICE-interface/CICE': checked out 'f773ef3892615da4b4af26b4be3e57c9f29b9343'\nSubmodule 'icepack' (https://github.com/NOAA-EMC/Icepack) registered for path 'CICE-interface/CICE/icepack'\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/CICE-interface/CICE/icepack'...\nSubmodule path 'CICE-interface/CICE/icepack': checked out 'db2a4778970ae340b6bdd62eb03f60cd37a13f75'\nSubmodule path 'CMEPS-interface/CMEPS': checked out '0658dde477b92348bc8608a8c1d20485843bf4a4'\nSubmodule path 'CMakeModules': checked out '18658695a0b87ad6fcf33982b9cb13e6d7373911'\nSubmodule path 'DATM': checked out '1e9ab6ed1763c981dc8e294c737c449644a9d1fe'\nSubmodule path 'FMS': checked out '0707f2c0279a9efd12cdbf0133c1e09435766928'\nSubmodule path 'FV3': checked out '70e55f21b80df17f2c4b8b1a270fddb8d28ff75b'\nSubmodule 'atmos_cubed_sphere' (https://github.com/NOAA-EMC/GFDL_atmos_cubed_sphere) registered for path 'FV3/atmos_cubed_sphere'\nSubmodule 'ccpp/framework' (https://github.com/NCAR/ccpp-framework) registered for path 'FV3/ccpp/framework'\nSubmodule 'ccpp/physics' (https://github.com/NCAR/ccpp-physics) registered for path 'FV3/ccpp/physics'\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FV3/atmos_cubed_sphere'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FV3/ccpp/framework'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FV3/ccpp/physics'...\nSubmodule path 'FV3/atmos_cubed_sphere': checked out '306ff31371e74694e5d9f4a57584295c7122b9ac'\nSubmodule path 'FV3/ccpp/framework': checked out '612dd1aa9ed6f8c08b4c280ba1c992dd5357fc59'\nSubmodule path 'FV3/ccpp/physics': checked out 'd884fb105bc138216f5f213d43ee05b0481a030e'\nSubmodule 'physics/rte-rrtmgp' (https://github.com/earth-system-radiation/rte-rrtmgp) registered for path 'FV3/ccpp/physics/physics/rte-rrtmgp'\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/FV3/ccpp/physics/physics/rte-rrtmgp'...\nSubmodule path 'FV3/ccpp/physics/physics/rte-rrtmgp': checked out '33c8a984c17cf41be5d4c2928242e1b4239bfc40'\nSubmodule path 'MOM6-interface/MOM6': checked out 'cdc7690f41fb747df435a07b92dcf3fa02420a6b'\nSubmodule 'pkg/CVMix-src' (https://github.com/CVMix/CVMix-src.git) registered for path 'MOM6-interface/MOM6/pkg/CVMix-src'\nSubmodule 'pkg/GSW-Fortran' (https://github.com/TEOS-10/GSW-Fortran.git) registered for path 'MOM6-interface/MOM6/pkg/GSW-Fortran'\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/MOM6-interface/MOM6/pkg/CVMix-src'...\nCloning into '/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/MOM6-interface/MOM6/pkg/GSW-Fortran'...\nSubmodule path 'MOM6-interface/MOM6/pkg/CVMix-src': checked out '534fc38e759fcb8a2563fa0dc4c0bbf81f758db9'\nSubmodule path 'MOM6-interface/MOM6/pkg/GSW-Fortran': checked out '29e64d652786e1d076a05128c920f394202bfe10'\nSubmodule path 'NEMS': checked out 'b80b5b18805302290f821e960d820e99e0bcd9ef'\nSubmodule path 'WW3': checked out 'a89e2a6339a016522d3a84188756d0a4bb11be87'\nSubmodule path 'stochastic_physics': checked out 'c39bb8a09a196a9dd17ea3fb52152b61ef2881ae'\n" -DEBUG:JOB/CLONE_PR_REPO:stderr: None -DEBUG:JOB/CLONE_PR_REPO:Finished Cloning https://6313aefd9c7e3baeae932bf5d8418f27f21abd6e@github.com/BrianCurtis-NOAA/ufs-weather-model -DEBUG:MAIN:Calling runFunction -INFO:JOB/RUNFUNCTION:Running: "cd tests && /bin/bash --login ./rt.sh -e" in "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model" -CRITICAL:JOB/RUNFUNCTION:STDOUT: b'+ SECONDS=0\n+ hostname\nhfe03\n+ [[ 1 -eq 0 ]]\n+ trap \'{ echo "rt.sh interrupted"; rt_trap ; }\' INT\n+ trap \'{ echo "rt.sh quit"; rt_trap ; }\' QUIT\n+ trap \'{ echo "rt.sh terminated"; rt_trap ; }\' TERM\n+ trap \'{ echo "rt.sh error on line $LINENO"; cleanup ; }\' ERR\n+ trap \'{ echo "rt.sh finished"; cleanup ; }\' EXIT\n+++ dirname ./rt.sh\n++ cd .\n++ pwd -P\n+ readonly PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n+ PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n+ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n++ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/..\n++ pwd\n+ readonly PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model\n+ PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model\n+ readonly LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n++ hostname\n+ echo hfe03 157174\n+ export RT_COMPILER=intel\n+ RT_COMPILER=intel\n+ source detect_machine.sh\n++ export ACCNR=nems\n++ ACCNR=nems\n++ case $(hostname -f) in\n+++ hostname -f\n++ MACHINE_ID=hera\n++ MACHINE_ID=hera\n++ \'[\' hera = orion \']\'\n++ \'[\' hera = hera \']\'\n++ MACHINE_ID=hera.intel\n++ echo \'Machine: \' hera.intel \' Account: \' nems\nMachine: hera.intel Account: nems\n+ source rt_utils.sh\n++ set -eu\n++ [[ ./rt.sh = \\r\\t\\_\\u\\t\\i\\l\\s\\.\\s\\h ]]\n++ UNIT_TEST=false\n++ qsub_id=0\n++ slurm_id=0\n++ bsub_id=0\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc\n++ __ms_function_name=setup__test_function__157174\n++ eval \'setup__test_function__157174() { /bin/true ; }\'\n+++ eval \'__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi\'\n+++ cat\n++ __ms_ksh_test=\n+++ eval \'if ( set | grep setup__test_function__157174 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi \'\n+++ cat\n++ __ms_bash_test=t\n++ [[ ! -z \'\' ]]\n++ [[ ! -z t ]]\n++ __ms_shell=bash\n++ [[ -d /lfs3 ]]\n++ [[ -d /scratch1 ]]\n++ [[ ! -d /scratch ]]\n++ eval module help\n++ module purge\n+++ /apps/lmod/7.7.18/libexec/lmod bash purge\n++ eval \'__LMOD_REF_COUNT_MODULEPATH="/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";\' export \'__LMOD_REF_COUNT_MODULEPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n+++ __LMOD_REF_COUNT_MODULEPATH=\'/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1\'\n+++ export __LMOD_REF_COUNT_MODULEPATH\n+++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n+++ export MODULEPATH\n+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz\n+++ export _ModuleTable001_\n+++ _ModuleTable002_=Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=\n+++ export _ModuleTable002_\n+++ _ModuleTable_Sz_=2\n+++ export _ModuleTable_Sz_\n+++ : -s sh\n++ eval\n++ unset __ms_shell\n++ unset __ms_ksh_test\n++ unset __ms_bash_test\n++ unset setup__test_function__157174\n++ unset __ms_function_name\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = gaea.* ]]\n+ [[ hera.intel = hera.* ]]\n+ module load rocoto\n++ /apps/lmod/7.7.18/libexec/lmod bash load rocoto\n+ eval \'__LMOD_REF_COUNT_LOADEDMODULES="rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT_LOADEDMODULES;\' \'LOADEDMODULES="rocoto/1.3.3";\' export \'LOADEDMODULES;\' \'__LMOD_REF_COUNT_MANPATH="/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";\' export \'__LMOD_REF_COUNT_MANPATH;\' \'MANPATH="/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";\' export \'MANPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'__LMOD_REF_COUNT_PATH="/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1";\' export \'__LMOD_REF_COUNT_PATH;\' \'PATH="/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin";\' export \'PATH;\' \'__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT__LMFILES_;\' \'_LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3";\' export \'_LMFILES_;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n++ __LMOD_REF_COUNT_LOADEDMODULES=rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT_LOADEDMODULES\n++ LOADEDMODULES=rocoto/1.3.3\n++ export LOADEDMODULES\n++ __LMOD_REF_COUNT_MANPATH=\'/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1\'\n++ export __LMOD_REF_COUNT_MANPATH\n++ MANPATH=/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man\n++ export MANPATH\n++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n++ export MODULEPATH\n++ __LMOD_REF_COUNT_PATH=\'/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1\'\n++ export __LMOD_REF_COUNT_PATH\n++ PATH=/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n++ export PATH\n++ __LMOD_REF_COUNT__LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT__LMFILES_\n++ _LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3\n++ export _LMFILES_\n++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv\n++ export _ModuleTable001_\n++ _ModuleTable002_=Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==\n++ export _ModuleTable002_\n++ _ModuleTable_Sz_=2\n++ export _ModuleTable_Sz_\n++ : -s sh\n+ eval\n++ which rocotorun\n+ ROCOTORUN=/apps/rocoto/1.3.3/bin/rocotorun\n++ which rocotostat\n+ ROCOTOSTAT=/apps/rocoto/1.3.3/bin/rocotostat\n++ which rocotocomplete\n+ ROCOTOCOMPLETE=/apps/rocoto/1.3.3/bin/rocotocomplete\n+ ROCOTO_SCHEDULER=slurm\n+ export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ ECFLOW_START=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh\n++ id -u\n+ ECF_PORT=22097\n+ QUEUE=batch\n+ COMPILE_QUEUE=batch\n+ PARTITION=\n+ dprefix=/scratch1/NCEPDEV\n+ DISKNM=/scratch1/NCEPDEV/nems/emc.nemspara/RT\n+ STMP=/scratch1/NCEPDEV/stmp4\n+ PTMP=/scratch1/NCEPDEV/stmp2\n+ SCHEDULER=slurm\n+ cp fv3_conf/fv3_slurm.IN_hera fv3_conf/fv3_slurm.IN\n+ cp fv3_conf/compile_slurm.IN_hera fv3_conf/compile_slurm.IN\n+ mkdir -p /scratch1/NCEPDEV/stmp4/Brian.Curtis\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST\n+ [[ hera.intel = hera.* ]]\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST_INTEL\n+ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ mkdir -p /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ CREATE_BASELINE=false\n+ ROCOTO=false\n+ ECFLOW=false\n+ KEEP_RUNDIR=false\n+ SINGLE_NAME=\n+ TEST_35D=false\n+ TESTS_FILE=rt.conf\n+ getopts :cl:mn:kreh opt\n+ case $opt in\n+ ECFLOW=true\n+ ROCOTO=false\n+ getopts :cl:mn:kreh opt\n+ [[ \'\' != \'\' ]]\n+ [[ rt.conf =~ 35d ]]\n+ [[ hera.intel = hera.* ]]\n+ RTPWD=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL\n+ INPUTDATA_ROOT=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212\n+ INPUTDATA_ROOT_WW3=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212/WW3_input_data_20201220\n+ shift 1\n+ [[ 0 -gt 1 ]]\n+ [[ false == true ]]\n+ COMPILE_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/Compile_hera.intel.log\n+ REGRESSIONTEST_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/RegressionTests_hera.intel.log\n+ date\n+ echo \'Start Regression test\'\n+ echo\n+ source default_vars.sh\n++ [[ hera.intel = wcoss_cray ]]\n++ [[ hera.intel = wcoss_dell_p3 ]]\n++ [[ hera.intel = wcoss2 ]]\n++ [[ hera.intel = orion.* ]]\n++ [[ hera.intel = hera.* ]]\n++ TASKS_dflt=150\n++ TPN_dflt=40\n++ INPES_dflt=3\n++ JNPES_dflt=8\n++ TASKS_thrd=84\n++ TPN_thrd=20\n++ INPES_thrd=3\n++ JNPES_thrd=4\n++ TASKS_stretch=48\n++ TPN_stretch=12\n++ INPES_stretch=2\n++ JNPES_stretch=4\n++ TASKS_strnest=96\n++ TPN_strnest=12\n++ INPES_strnest=2\n++ JNPES_strnest=4\n++ TASKS_cpl_dflt=192\n++ TPN_cpl_dflt=40\n++ INPES_cpl_dflt=3\n++ JNPES_cpl_dflt=8\n++ THRD_cpl_dflt=1\n++ WPG_cpl_dflt=6\n++ MPB_cpl_dflt=\'0 143\'\n++ APB_cpl_dflt=\'0 149\'\n++ OPB_cpl_dflt=\'150 179\'\n++ IPB_cpl_dflt=\'180 191\'\n++ TASKS_cpl_dflt_wwav=204\n++ TPN_cpl_dflt_wwav=40\n++ INPES_cpl_dflt_wwav=3\n++ JNPES_cpl_dflt_wwav=8\n++ THRD_cpl_dflt_wwav=1\n++ WPG_cpl_dflt_wwav=6\n++ MPB_cpl_dflt_wwav=\'0 143\'\n++ APB_cpl_dflt_wwav=\'0 149\'\n++ OPB_cpl_dflt_wwav=\'150 179\'\n++ IPB_cpl_dflt_wwav=\'180 191\'\n++ WPB_cpl_dflt_wwav=\'192 203\'\n++ TASKS_cpl_thrd=120\n++ TPN_cpl_thrd=40\n++ INPES_cpl_thrd=3\n++ JNPES_cpl_thrd=4\n++ THRD_cpl_thrd=2\n++ WPG_cpl_thrd=6\n++ MPB_cpl_thrd=\'0 77\'\n++ APB_cpl_thrd=\'0 77\'\n++ OPB_cpl_thrd=\'78 107\'\n++ IPB_cpl_thrd=\'108 119\'\n++ TASKS_cpl_bmrk=480\n++ TPN_cpl_bmrk=40\n++ INPES_cpl_bmrk=6\n++ JNPES_cpl_bmrk=8\n++ THRD_cpl_bmrk=1\n++ WPG_cpl_bmrk=24\n++ MPB_cpl_bmrk=\'0 287\'\n++ APB_cpl_bmrk=\'0 311\'\n++ OPB_cpl_bmrk=\'312 431\'\n++ IPB_cpl_bmrk=\'432 479\'\n++ TASKS_cpl_wwav=520\n++ TPN_cpl_wwav=40\n++ INPES_cpl_wwav=6\n++ JNPES_cpl_wwav=8\n++ THRD_cpl_wwav=1\n++ WPG_cpl_wwav=24\n++ MPB_cpl_wwav=\'0 287\'\n++ APB_cpl_wwav=\'0 311\'\n++ OPB_cpl_wwav=\'312 431\'\n++ IPB_cpl_wwav=\'432 479\'\n++ WPB_cpl_wwav=\'480 519\'\n++ TASKS_cpl_c192=288\n++ TPN_cpl_c192=40\n++ INPES_cpl_c192=4\n++ JNPES_cpl_c192=8\n++ THRD_cpl_c192=1\n++ WPG_cpl_c192=12\n++ MPB_cpl_c192=\'0 191\'\n++ APB_cpl_c192=\'0 203\'\n++ OPB_cpl_c192=\'204 263\'\n++ IPB_cpl_c192=\'264 287\'\n++ TASKS_cpl_c384=318\n++ TPN_cpl_c384=40\n++ INPES_cpl_c384=3\n++ JNPES_cpl_c384=8\n++ THRD_cpl_c384=1\n++ WPG_cpl_c384=6\n++ MPB_cpl_c384=\'0 143\'\n++ APB_cpl_c384=\'0 149\'\n++ OPB_cpl_c384=\'150 269\'\n++ IPB_cpl_c384=\'270 317\'\n++ TASKS_datm_100=120\n++ TPN_datm_100=40\n++ MPB_datm_100=\'16 77\'\n++ APB_datm_100=\'0 15\'\n++ OPB_datm_100=\'78 107\'\n++ IPB_datm_100=\'108 119\'\n++ TASKS_datm_025=208\n++ TPN_datm_025=40\n++ MPB_datm_025=\'0 39\'\n++ APB_datm_025=\'0 39\'\n++ OPB_datm_025=\'40 159\'\n++ IPB_datm_025=\'160 207\'\n++ [[ intel = gnu ]]\n++ WLCLK_dflt=15\n+ TEST_NR=0\n+ COMPILE_NR=0\n+ COMPILE_PREV_WW3_NR=\n+ rm -f fail_test\n+ LOG_DIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ MAX_BUILDS=10\n+ MAX_JOBS=30\n+ [[ hera.intel = jet.intel ]]\n+ ECFLOW_RUN=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ ECFLOW_SUITE=regtest_157174\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ mkdir -p /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run/regtest_157174\n+ cp head.h tail.h /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ cat\n+ [[ hera.intel = wcoss ]]\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = hera.* ]]\n+ QUEUE=batch\n+ new_compile=false\n+ in_metatask=false\n+ [[ -f rt.conf ]]\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# PROD tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # PROD tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_1\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017 =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_control | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_control ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 1\n+ TEST_NR=001\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/tests/fv3_ccpp_control\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_control_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ \'[\' \'\' \']\'\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ echo endsuite\n+ ecflow_run\n+ [[ 22097 -gt 49151 ]]\n++ hostname\n+ ECF_HOST=hfe03\n+ set +e\n+ ecflow_client --ping --host=hfe03 --port=22097\n[02:03:26 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n+ not_running=1\n+ [[ 1 -eq 1 ]]\n+ echo \'ecflow_server is NOT running on hfe03:22097\'\necflow_server is NOT running on hfe03:22097\n+ sh /scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh -p 22097\n[02:03:27 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\nTue Feb 23 02:03:27 UTC 2021\n\nUser "20597" attempting to start ecf server on "hfe03" using ECF_PORT "22097" and with:\nECF_HOME : "/home/Brian.Curtis/ecflow_server"\nECF_LOG : "hfe03.22097.ecf.log"\nECF_CHECK : "hfe03.22097.check"\nECF_CHECKOLD : "hfe03.22097.check.b"\nECF_OUT : "/dev/null"\n\nclient version is Ecflow version(5.6.0) boost(1.74.0) compiler(gcc 7.5.0) protocol(JSON cereal 1.3.0) Compiled on Nov 26 2020 15:50:45\nChecking if the server is already running on hfe03 and port 22097\n[02:03:28 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n\nBacking up check point and log files\n\nOK starting ecFlow server...\n\nPlacing server into RESTART mode...\n\nTo view server on ecflow_ui - goto Servers/Manage Servers... and enter\nName : \nHost : hfe03\nPort Number : 22097\n\n+ set -e\n+ ECFLOW_RUNNING=true\n+ export ECF_PORT\n+ export ECF_HOST\n+ ecflow_client --load=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run/regtest_157174.def\n+ ecflow_client --begin=regtest_157174\n+ active_tasks=1\n+ [[ 1 -ne 0 ]]\n+ wait 157456\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157555\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157596\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157808\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159001\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159047\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159376\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159862\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 160555\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 161800\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 165751\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 166400\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 166920\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 167617\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 168309\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 169215\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 170154\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 170954\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171046\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171117\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171962\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 172768\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 173594\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 174258\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 175084\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 175455\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 176029\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 176513\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177704\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177822\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177938\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178054\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178212\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178802\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179110\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179380\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179789\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 180067\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 180710\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 182215\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 186727\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 188275\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 190083\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 192026\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 193717\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 195616\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197090\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197206\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197339\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197557\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197712\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 198946\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199319\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199677\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199873\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200062\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200160\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200505\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200706\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 201351\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 201814\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202159\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202337\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202799\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203129\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203469\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203687\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203860\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 204012\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 206202\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208128\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208436\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208811\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 209166\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=0\n+ echo \'ecflow tasks remaining: 0\'\necflow tasks remaining: 0\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 0 -ne 0 ]]\n+ sleep 65\n+ ecflow_client --delete=yes /regtest_157174\n+ sleep 5\n+ set +e\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel/compile_1.log\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel/rt_001_fv3_ccpp_control_prod.log\n+ [[ -e fail_test ]]\n+ echo\n\n+ echo REGRESSION TEST WAS SUCCESSFUL\nREGRESSION TEST WAS SUCCESSFUL\n+ echo\n+ echo REGRESSION TEST WAS SUCCESSFUL\n+ rm -f \'fv3_*.x\' fv3_1.exe modules.fv3_1\n+ [[ false == false ]]\n+ rm -rf /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ date\n++ printf \'%02dh:%02dm:%02ds\\n\' 0 13 46\n+ elapsed_time=00h:13m:46s\n+ echo \'Elapsed time: 00h:13m:46s. Have a nice day!\'\n+ echo \'Elapsed time: 00h:13m:46s. Have a nice day!\'\nElapsed time: 00h:13m:46s. Have a nice day!\n+ echo \'rt.sh finished\'\nrt.sh finished\n+ cleanup\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ [[ true == true ]]\n+ ecflow_stop\n+ [[ true == true ]]\n+ set +e\n++ ecflow_client --get\n++ grep \'^suite\'\n+ SUITES=\n+ echo SUITES=\nSUITES=\n+ \'[\' -z \'\' \']\'\n+ ecflow_client --halt=yes\n+ ecflow_client --check_pt\n+ ecflow_client --terminate=yes\n+ trap 0\n+ exit\n' -CRITICAL:JOB/RUNFUNCTION:STDERR: None -INFO:JOB/RUNFUNCTION:Attempting to run callback: move_rt_logs -INFO:JOB/MOVE_RT_LOGS:Attempting to run: git add tests/RegressionTests_hera.intel.log -INFO:JOB/MOVE_RT_LOGS:Finished command git add tests/RegressionTests_hera.intel.log -DEBUG:JOB/MOVE_RT_LOGS:stdout: b'' -DEBUG:JOB/MOVE_RT_LOGS:stderr: None -INFO:JOB/MOVE_RT_LOGS:Attempting to run: git commit -m "Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log" -INFO:JOB/MOVE_RT_LOGS:Finished command git commit -m "Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log" -DEBUG:JOB/MOVE_RT_LOGS:stdout: b'[feature/rt-automation d93c8db] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log\n 1 file changed, 4 insertions(+), 4 deletions(-)\n' -DEBUG:JOB/MOVE_RT_LOGS:stderr: None -INFO:JOB/MOVE_RT_LOGS:Attempting to run: git pull --no-edit origin feature/rt-automation -INFO:JOB/MOVE_RT_LOGS:Finished command git pull --no-edit origin feature/rt-automation -DEBUG:JOB/MOVE_RT_LOGS:stdout: b'From https://github.com/BrianCurtis-NOAA/ufs-weather-model\n * branch feature/rt-automation -> FETCH_HEAD\nAlready up to date.\n' -DEBUG:JOB/MOVE_RT_LOGS:stderr: None -INFO:JOB/MOVE_RT_LOGS:Attempting to run: sleep 10 -INFO:JOB/MOVE_RT_LOGS:Finished command sleep 10 -DEBUG:JOB/MOVE_RT_LOGS:stdout: b'' -DEBUG:JOB/MOVE_RT_LOGS:stderr: None -INFO:JOB/MOVE_RT_LOGS:Attempting to run: git push origin feature/rt-automation -INFO:JOB/MOVE_RT_LOGS:Finished command git push origin feature/rt-automation -DEBUG:JOB/MOVE_RT_LOGS:stdout: b'To https://github.com/BrianCurtis-NOAA/ufs-weather-model\n 588fe3d..d93c8db feature/rt-automation -> feature/rt-automation\n' -DEBUG:JOB/MOVE_RT_LOGS:stderr: None -INFO:JOB/RUNFUNCTION:Finished callback move_rt_logs -DEBUG:JOB/RUNFUNCTION:stdout: b'+ SECONDS=0\n+ hostname\nhfe03\n+ [[ 1 -eq 0 ]]\n+ trap \'{ echo "rt.sh interrupted"; rt_trap ; }\' INT\n+ trap \'{ echo "rt.sh quit"; rt_trap ; }\' QUIT\n+ trap \'{ echo "rt.sh terminated"; rt_trap ; }\' TERM\n+ trap \'{ echo "rt.sh error on line $LINENO"; cleanup ; }\' ERR\n+ trap \'{ echo "rt.sh finished"; cleanup ; }\' EXIT\n+++ dirname ./rt.sh\n++ cd .\n++ pwd -P\n+ readonly PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n+ PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n+ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests\n++ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/..\n++ pwd\n+ readonly PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model\n+ PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model\n+ readonly LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n++ hostname\n+ echo hfe03 157174\n+ export RT_COMPILER=intel\n+ RT_COMPILER=intel\n+ source detect_machine.sh\n++ export ACCNR=nems\n++ ACCNR=nems\n++ case $(hostname -f) in\n+++ hostname -f\n++ MACHINE_ID=hera\n++ MACHINE_ID=hera\n++ \'[\' hera = orion \']\'\n++ \'[\' hera = hera \']\'\n++ MACHINE_ID=hera.intel\n++ echo \'Machine: \' hera.intel \' Account: \' nems\nMachine: hera.intel Account: nems\n+ source rt_utils.sh\n++ set -eu\n++ [[ ./rt.sh = \\r\\t\\_\\u\\t\\i\\l\\s\\.\\s\\h ]]\n++ UNIT_TEST=false\n++ qsub_id=0\n++ slurm_id=0\n++ bsub_id=0\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc\n++ __ms_function_name=setup__test_function__157174\n++ eval \'setup__test_function__157174() { /bin/true ; }\'\n+++ eval \'__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi\'\n+++ cat\n++ __ms_ksh_test=\n+++ eval \'if ( set | grep setup__test_function__157174 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi \'\n+++ cat\n++ __ms_bash_test=t\n++ [[ ! -z \'\' ]]\n++ [[ ! -z t ]]\n++ __ms_shell=bash\n++ [[ -d /lfs3 ]]\n++ [[ -d /scratch1 ]]\n++ [[ ! -d /scratch ]]\n++ eval module help\n++ module purge\n+++ /apps/lmod/7.7.18/libexec/lmod bash purge\n++ eval \'__LMOD_REF_COUNT_MODULEPATH="/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";\' export \'__LMOD_REF_COUNT_MODULEPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n+++ __LMOD_REF_COUNT_MODULEPATH=\'/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1\'\n+++ export __LMOD_REF_COUNT_MODULEPATH\n+++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n+++ export MODULEPATH\n+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz\n+++ export _ModuleTable001_\n+++ _ModuleTable002_=Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=\n+++ export _ModuleTable002_\n+++ _ModuleTable_Sz_=2\n+++ export _ModuleTable_Sz_\n+++ : -s sh\n++ eval\n++ unset __ms_shell\n++ unset __ms_ksh_test\n++ unset __ms_bash_test\n++ unset setup__test_function__157174\n++ unset __ms_function_name\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = gaea.* ]]\n+ [[ hera.intel = hera.* ]]\n+ module load rocoto\n++ /apps/lmod/7.7.18/libexec/lmod bash load rocoto\n+ eval \'__LMOD_REF_COUNT_LOADEDMODULES="rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT_LOADEDMODULES;\' \'LOADEDMODULES="rocoto/1.3.3";\' export \'LOADEDMODULES;\' \'__LMOD_REF_COUNT_MANPATH="/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";\' export \'__LMOD_REF_COUNT_MANPATH;\' \'MANPATH="/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";\' export \'MANPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'__LMOD_REF_COUNT_PATH="/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1";\' export \'__LMOD_REF_COUNT_PATH;\' \'PATH="/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin";\' export \'PATH;\' \'__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT__LMFILES_;\' \'_LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3";\' export \'_LMFILES_;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n++ __LMOD_REF_COUNT_LOADEDMODULES=rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT_LOADEDMODULES\n++ LOADEDMODULES=rocoto/1.3.3\n++ export LOADEDMODULES\n++ __LMOD_REF_COUNT_MANPATH=\'/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1\'\n++ export __LMOD_REF_COUNT_MANPATH\n++ MANPATH=/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man\n++ export MANPATH\n++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n++ export MODULEPATH\n++ __LMOD_REF_COUNT_PATH=\'/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1\'\n++ export __LMOD_REF_COUNT_PATH\n++ PATH=/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n++ export PATH\n++ __LMOD_REF_COUNT__LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT__LMFILES_\n++ _LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3\n++ export _LMFILES_\n++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv\n++ export _ModuleTable001_\n++ _ModuleTable002_=Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==\n++ export _ModuleTable002_\n++ _ModuleTable_Sz_=2\n++ export _ModuleTable_Sz_\n++ : -s sh\n+ eval\n++ which rocotorun\n+ ROCOTORUN=/apps/rocoto/1.3.3/bin/rocotorun\n++ which rocotostat\n+ ROCOTOSTAT=/apps/rocoto/1.3.3/bin/rocotostat\n++ which rocotocomplete\n+ ROCOTOCOMPLETE=/apps/rocoto/1.3.3/bin/rocotocomplete\n+ ROCOTO_SCHEDULER=slurm\n+ export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ ECFLOW_START=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh\n++ id -u\n+ ECF_PORT=22097\n+ QUEUE=batch\n+ COMPILE_QUEUE=batch\n+ PARTITION=\n+ dprefix=/scratch1/NCEPDEV\n+ DISKNM=/scratch1/NCEPDEV/nems/emc.nemspara/RT\n+ STMP=/scratch1/NCEPDEV/stmp4\n+ PTMP=/scratch1/NCEPDEV/stmp2\n+ SCHEDULER=slurm\n+ cp fv3_conf/fv3_slurm.IN_hera fv3_conf/fv3_slurm.IN\n+ cp fv3_conf/compile_slurm.IN_hera fv3_conf/compile_slurm.IN\n+ mkdir -p /scratch1/NCEPDEV/stmp4/Brian.Curtis\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST\n+ [[ hera.intel = hera.* ]]\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST_INTEL\n+ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ mkdir -p /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ CREATE_BASELINE=false\n+ ROCOTO=false\n+ ECFLOW=false\n+ KEEP_RUNDIR=false\n+ SINGLE_NAME=\n+ TEST_35D=false\n+ TESTS_FILE=rt.conf\n+ getopts :cl:mn:kreh opt\n+ case $opt in\n+ ECFLOW=true\n+ ROCOTO=false\n+ getopts :cl:mn:kreh opt\n+ [[ \'\' != \'\' ]]\n+ [[ rt.conf =~ 35d ]]\n+ [[ hera.intel = hera.* ]]\n+ RTPWD=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL\n+ INPUTDATA_ROOT=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212\n+ INPUTDATA_ROOT_WW3=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212/WW3_input_data_20201220\n+ shift 1\n+ [[ 0 -gt 1 ]]\n+ [[ false == true ]]\n+ COMPILE_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/Compile_hera.intel.log\n+ REGRESSIONTEST_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/RegressionTests_hera.intel.log\n+ date\n+ echo \'Start Regression test\'\n+ echo\n+ source default_vars.sh\n++ [[ hera.intel = wcoss_cray ]]\n++ [[ hera.intel = wcoss_dell_p3 ]]\n++ [[ hera.intel = wcoss2 ]]\n++ [[ hera.intel = orion.* ]]\n++ [[ hera.intel = hera.* ]]\n++ TASKS_dflt=150\n++ TPN_dflt=40\n++ INPES_dflt=3\n++ JNPES_dflt=8\n++ TASKS_thrd=84\n++ TPN_thrd=20\n++ INPES_thrd=3\n++ JNPES_thrd=4\n++ TASKS_stretch=48\n++ TPN_stretch=12\n++ INPES_stretch=2\n++ JNPES_stretch=4\n++ TASKS_strnest=96\n++ TPN_strnest=12\n++ INPES_strnest=2\n++ JNPES_strnest=4\n++ TASKS_cpl_dflt=192\n++ TPN_cpl_dflt=40\n++ INPES_cpl_dflt=3\n++ JNPES_cpl_dflt=8\n++ THRD_cpl_dflt=1\n++ WPG_cpl_dflt=6\n++ MPB_cpl_dflt=\'0 143\'\n++ APB_cpl_dflt=\'0 149\'\n++ OPB_cpl_dflt=\'150 179\'\n++ IPB_cpl_dflt=\'180 191\'\n++ TASKS_cpl_dflt_wwav=204\n++ TPN_cpl_dflt_wwav=40\n++ INPES_cpl_dflt_wwav=3\n++ JNPES_cpl_dflt_wwav=8\n++ THRD_cpl_dflt_wwav=1\n++ WPG_cpl_dflt_wwav=6\n++ MPB_cpl_dflt_wwav=\'0 143\'\n++ APB_cpl_dflt_wwav=\'0 149\'\n++ OPB_cpl_dflt_wwav=\'150 179\'\n++ IPB_cpl_dflt_wwav=\'180 191\'\n++ WPB_cpl_dflt_wwav=\'192 203\'\n++ TASKS_cpl_thrd=120\n++ TPN_cpl_thrd=40\n++ INPES_cpl_thrd=3\n++ JNPES_cpl_thrd=4\n++ THRD_cpl_thrd=2\n++ WPG_cpl_thrd=6\n++ MPB_cpl_thrd=\'0 77\'\n++ APB_cpl_thrd=\'0 77\'\n++ OPB_cpl_thrd=\'78 107\'\n++ IPB_cpl_thrd=\'108 119\'\n++ TASKS_cpl_bmrk=480\n++ TPN_cpl_bmrk=40\n++ INPES_cpl_bmrk=6\n++ JNPES_cpl_bmrk=8\n++ THRD_cpl_bmrk=1\n++ WPG_cpl_bmrk=24\n++ MPB_cpl_bmrk=\'0 287\'\n++ APB_cpl_bmrk=\'0 311\'\n++ OPB_cpl_bmrk=\'312 431\'\n++ IPB_cpl_bmrk=\'432 479\'\n++ TASKS_cpl_wwav=520\n++ TPN_cpl_wwav=40\n++ INPES_cpl_wwav=6\n++ JNPES_cpl_wwav=8\n++ THRD_cpl_wwav=1\n++ WPG_cpl_wwav=24\n++ MPB_cpl_wwav=\'0 287\'\n++ APB_cpl_wwav=\'0 311\'\n++ OPB_cpl_wwav=\'312 431\'\n++ IPB_cpl_wwav=\'432 479\'\n++ WPB_cpl_wwav=\'480 519\'\n++ TASKS_cpl_c192=288\n++ TPN_cpl_c192=40\n++ INPES_cpl_c192=4\n++ JNPES_cpl_c192=8\n++ THRD_cpl_c192=1\n++ WPG_cpl_c192=12\n++ MPB_cpl_c192=\'0 191\'\n++ APB_cpl_c192=\'0 203\'\n++ OPB_cpl_c192=\'204 263\'\n++ IPB_cpl_c192=\'264 287\'\n++ TASKS_cpl_c384=318\n++ TPN_cpl_c384=40\n++ INPES_cpl_c384=3\n++ JNPES_cpl_c384=8\n++ THRD_cpl_c384=1\n++ WPG_cpl_c384=6\n++ MPB_cpl_c384=\'0 143\'\n++ APB_cpl_c384=\'0 149\'\n++ OPB_cpl_c384=\'150 269\'\n++ IPB_cpl_c384=\'270 317\'\n++ TASKS_datm_100=120\n++ TPN_datm_100=40\n++ MPB_datm_100=\'16 77\'\n++ APB_datm_100=\'0 15\'\n++ OPB_datm_100=\'78 107\'\n++ IPB_datm_100=\'108 119\'\n++ TASKS_datm_025=208\n++ TPN_datm_025=40\n++ MPB_datm_025=\'0 39\'\n++ APB_datm_025=\'0 39\'\n++ OPB_datm_025=\'40 159\'\n++ IPB_datm_025=\'160 207\'\n++ [[ intel = gnu ]]\n++ WLCLK_dflt=15\n+ TEST_NR=0\n+ COMPILE_NR=0\n+ COMPILE_PREV_WW3_NR=\n+ rm -f fail_test\n+ LOG_DIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ MAX_BUILDS=10\n+ MAX_JOBS=30\n+ [[ hera.intel = jet.intel ]]\n+ ECFLOW_RUN=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ ECFLOW_SUITE=regtest_157174\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ mkdir -p /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run/regtest_157174\n+ cp head.h tail.h /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run\n+ cat\n+ [[ hera.intel = wcoss ]]\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = hera.* ]]\n+ QUEUE=batch\n+ new_compile=false\n+ in_metatask=false\n+ [[ -f rt.conf ]]\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# PROD tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # PROD tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_1\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017 =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_control | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_control ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 1\n+ TEST_NR=001\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/tests/fv3_ccpp_control\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_control_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ \'[\' \'\' \']\'\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ echo endsuite\n+ ecflow_run\n+ [[ 22097 -gt 49151 ]]\n++ hostname\n+ ECF_HOST=hfe03\n+ set +e\n+ ecflow_client --ping --host=hfe03 --port=22097\n[02:03:26 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n+ not_running=1\n+ [[ 1 -eq 1 ]]\n+ echo \'ecflow_server is NOT running on hfe03:22097\'\necflow_server is NOT running on hfe03:22097\n+ sh /scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh -p 22097\n[02:03:27 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\nTue Feb 23 02:03:27 UTC 2021\n\nUser "20597" attempting to start ecf server on "hfe03" using ECF_PORT "22097" and with:\nECF_HOME : "/home/Brian.Curtis/ecflow_server"\nECF_LOG : "hfe03.22097.ecf.log"\nECF_CHECK : "hfe03.22097.check"\nECF_CHECKOLD : "hfe03.22097.check.b"\nECF_OUT : "/dev/null"\n\nclient version is Ecflow version(5.6.0) boost(1.74.0) compiler(gcc 7.5.0) protocol(JSON cereal 1.3.0) Compiled on Nov 26 2020 15:50:45\nChecking if the server is already running on hfe03 and port 22097\n[02:03:28 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n\nBacking up check point and log files\n\nOK starting ecFlow server...\n\nPlacing server into RESTART mode...\n\nTo view server on ecflow_ui - goto Servers/Manage Servers... and enter\nName : \nHost : hfe03\nPort Number : 22097\n\n+ set -e\n+ ECFLOW_RUNNING=true\n+ export ECF_PORT\n+ export ECF_HOST\n+ ecflow_client --load=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/ecflow_run/regtest_157174.def\n+ ecflow_client --begin=regtest_157174\n+ active_tasks=1\n+ [[ 1 -ne 0 ]]\n+ wait 157456\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157555\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157596\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 157808\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159001\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159047\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159376\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 159862\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 160555\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 161800\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 165751\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 166400\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 166920\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 167617\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 168309\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 169215\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 170154\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 170954\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171046\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171117\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 171962\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 172768\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 173594\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 174258\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 175084\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 175455\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 176029\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 176513\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177704\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177822\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 177938\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178054\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178212\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 178802\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179110\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179380\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 179789\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 180067\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 180710\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 182215\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 186727\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 188275\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 190083\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 192026\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 193717\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 195616\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197090\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197206\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197339\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197557\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 197712\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 198946\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199319\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199677\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 199873\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200062\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200160\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200505\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 200706\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 201351\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 201814\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202159\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202337\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 202799\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203129\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203469\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203687\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 203860\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 204012\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 206202\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208128\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208436\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 208811\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 209166\n+ sleep 10\n++ ecflow_client --get_state /regtest_157174\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=0\n+ echo \'ecflow tasks remaining: 0\'\necflow tasks remaining: 0\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 0 -ne 0 ]]\n+ sleep 65\n+ ecflow_client --delete=yes /regtest_157174\n+ sleep 5\n+ set +e\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel/compile_1.log\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/log_hera.intel/rt_001_fv3_ccpp_control_prod.log\n+ [[ -e fail_test ]]\n+ echo\n\n+ echo REGRESSION TEST WAS SUCCESSFUL\nREGRESSION TEST WAS SUCCESSFUL\n+ echo\n+ echo REGRESSION TEST WAS SUCCESSFUL\n+ rm -f \'fv3_*.x\' fv3_1.exe modules.fv3_1\n+ [[ false == false ]]\n+ rm -rf /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_157174\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ date\n++ printf \'%02dh:%02dm:%02ds\\n\' 0 13 46\n+ elapsed_time=00h:13m:46s\n+ echo \'Elapsed time: 00h:13m:46s. Have a nice day!\'\n+ echo \'Elapsed time: 00h:13m:46s. Have a nice day!\'\nElapsed time: 00h:13m:46s. Have a nice day!\n+ echo \'rt.sh finished\'\nrt.sh finished\n+ cleanup\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/lock\n+ [[ true == true ]]\n+ ecflow_stop\n+ [[ true == true ]]\n+ set +e\n++ ecflow_client --get\n++ grep \'^suite\'\n+ SUITES=\n+ echo SUITES=\nSUITES=\n+ \'[\' -z \'\' \']\'\n+ ecflow_client --halt=yes\n+ ecflow_client --check_pt\n+ ecflow_client --terminate=yes\n+ trap 0\n+ exit\n' -DEBUG:JOB/RUNFUNCTION:stderr: None -DEBUG:MAIN:Calling push_rtauto_log -INFO:JOB/PUSH_RTAUTO_LOG:Running "cp /scratch1/NCEPDEV/nems/Brian.Curtis/git2/BrianCurtis-NOAA/ufs-weather-model-rt/tests/auto/rt_auto_20210223020202.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model/tests/auto/" in location "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223020208/ufs-weather-model" From 931a701c4b97c43deea5814e4c4fe63ab1ac8a51 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 24 Feb 2021 01:34:09 +0000 Subject: [PATCH 104/117] * removed an extra log --- tests/auto/rt_auto_20210223031812.log | 28 --------------------------- 1 file changed, 28 deletions(-) delete mode 100644 tests/auto/rt_auto_20210223031812.log diff --git a/tests/auto/rt_auto_20210223031812.log b/tests/auto/rt_auto_20210223031812.log deleted file mode 100644 index 438012822f..0000000000 --- a/tests/auto/rt_auto_20210223031812.log +++ /dev/null @@ -1,28 +0,0 @@ -INFO:MAIN:Starting Script -INFO:MAIN:Parsing input args -INFO:MAIN:Calling input_data(). -INFO:MAIN:Setting up GitHub interface. -INFO:MAIN:Getting all pull requests, labels and actions applicable to this machine. -INFO:MAIN:Adding all jobs to an object list and running them. -INFO:MAIN:Starting Job: <__main__.Job object at 0x7f843d0dac70> -INFO:MAIN:Calling remove_pr_label -INFO:JOB:Removing Label: Label(name="Auto-RT-hera") -INFO:MAIN:Calling clone_pr_repo -INFO:MAIN:Calling runFunction -INFO:JOB/RUNFUNCTION:Running: "cd tests && /bin/bash --login ./rt.sh -e" in "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model" -CRITICAL:JOB/RUNFUNCTION:STDOUT: b'+ SECONDS=0\n+ hostname\nhfe03\n+ [[ 1 -eq 0 ]]\n+ trap \'{ echo "rt.sh interrupted"; rt_trap ; }\' INT\n+ trap \'{ echo "rt.sh quit"; rt_trap ; }\' QUIT\n+ trap \'{ echo "rt.sh terminated"; rt_trap ; }\' TERM\n+ trap \'{ echo "rt.sh error on line $LINENO"; cleanup ; }\' ERR\n+ trap \'{ echo "rt.sh finished"; cleanup ; }\' EXIT\n+++ dirname ./rt.sh\n++ cd .\n++ pwd -P\n+ readonly PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests\n+ PATHRT=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests\n+ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests\n++ cd /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/..\n++ pwd\n+ readonly PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model\n+ PATHTR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model\n+ readonly LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/lock\n+ LOCKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/lock\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/lock\n++ hostname\n+ echo hfe03 122270\n+ export RT_COMPILER=intel\n+ RT_COMPILER=intel\n+ source detect_machine.sh\n++ export ACCNR=nems\n++ ACCNR=nems\n++ case $(hostname -f) in\n+++ hostname -f\n++ MACHINE_ID=hera\n++ MACHINE_ID=hera\n++ \'[\' hera = orion \']\'\n++ \'[\' hera = hera \']\'\n++ MACHINE_ID=hera.intel\n++ echo \'Machine: \' hera.intel \' Account: \' nems\nMachine: hera.intel Account: nems\n+ source rt_utils.sh\n++ set -eu\n++ [[ ./rt.sh = \\r\\t\\_\\u\\t\\i\\l\\s\\.\\s\\h ]]\n++ UNIT_TEST=false\n++ qsub_id=0\n++ slurm_id=0\n++ bsub_id=0\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc\n++ __ms_function_name=setup__test_function__122270\n++ eval \'setup__test_function__122270() { /bin/true ; }\'\n+++ eval \'__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi\'\n+++ cat\n++ __ms_ksh_test=\n+++ eval \'if ( set | grep setup__test_function__122270 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi \'\n+++ cat\n++ __ms_bash_test=t\n++ [[ ! -z \'\' ]]\n++ [[ ! -z t ]]\n++ __ms_shell=bash\n++ [[ -d /lfs3 ]]\n++ [[ -d /scratch1 ]]\n++ [[ ! -d /scratch ]]\n++ eval module help\n++ module purge\n+++ /apps/lmod/7.7.18/libexec/lmod bash purge\n++ eval \'__LMOD_REF_COUNT_MODULEPATH="/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";\' export \'__LMOD_REF_COUNT_MODULEPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n+++ __LMOD_REF_COUNT_MODULEPATH=\'/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1\'\n+++ export __LMOD_REF_COUNT_MODULEPATH\n+++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n+++ export MODULEPATH\n+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVz\n+++ export _ModuleTable001_\n+++ _ModuleTable002_=Oi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=\n+++ export _ModuleTable002_\n+++ _ModuleTable_Sz_=2\n+++ export _ModuleTable_Sz_\n+++ : -s sh\n++ eval\n++ unset __ms_shell\n++ unset __ms_ksh_test\n++ unset __ms_bash_test\n++ unset setup__test_function__122270\n++ unset __ms_function_name\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = gaea.* ]]\n+ [[ hera.intel = hera.* ]]\n+ module load rocoto\n++ /apps/lmod/7.7.18/libexec/lmod bash load rocoto\n+ eval \'__LMOD_REF_COUNT_LOADEDMODULES="rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT_LOADEDMODULES;\' \'LOADEDMODULES="rocoto/1.3.3";\' export \'LOADEDMODULES;\' \'__LMOD_REF_COUNT_MANPATH="/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";\' export \'__LMOD_REF_COUNT_MANPATH;\' \'MANPATH="/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";\' export \'MANPATH;\' \'MODULEPATH="/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";\' export \'MODULEPATH;\' \'__LMOD_REF_COUNT_PATH="/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1";\' export \'__LMOD_REF_COUNT_PATH;\' \'PATH="/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin";\' export \'PATH;\' \'__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3:1";\' export \'__LMOD_REF_COUNT__LMFILES_;\' \'_LMFILES_="/apps/modules/modulefiles/rocoto/1.3.3";\' export \'_LMFILES_;\' \'_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv";\' export \'_ModuleTable001_;\' \'_ModuleTable002_="Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==";\' export \'_ModuleTable002_;\' \'_ModuleTable_Sz_="2";\' export \'_ModuleTable_Sz_;\'\n++ __LMOD_REF_COUNT_LOADEDMODULES=rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT_LOADEDMODULES\n++ LOADEDMODULES=rocoto/1.3.3\n++ export LOADEDMODULES\n++ __LMOD_REF_COUNT_MANPATH=\'/apps/rocoto/1.3.3/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1\'\n++ export __LMOD_REF_COUNT_MANPATH\n++ MANPATH=/apps/rocoto/1.3.3/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man\n++ export MANPATH\n++ MODULEPATH=/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles\n++ export MODULEPATH\n++ __LMOD_REF_COUNT_PATH=\'/apps/rocoto/1.3.3/bin:1;/usr/lib64/qt-3.3/bin:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:1;/usr/bin:1;/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Brian.Curtis/.local/bin:1;/home/Brian.Curtis/bin:1\'\n++ export __LMOD_REF_COUNT_PATH\n++ PATH=/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n++ export PATH\n++ __LMOD_REF_COUNT__LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3:1\n++ export __LMOD_REF_COUNT__LMFILES_\n++ _LMFILES_=/apps/modules/modulefiles/rocoto/1.3.3\n++ export _LMFILES_\n++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXtyb2NvdG89e1siZm4iXT0iL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9yb2NvdG8vMS4zLjMiLFsiZnVsbE5hbWUiXT0icm9jb3RvLzEuMy4zIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icm9jb3RvIix9LH0sbXBhdGhBPXsiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQv\n++ export _ModuleTable001_\n++ _ModuleTable002_=Y3JheS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvYXBwcy9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4Oi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXM6L29wdC9jcmF5L21vZHVsZWZpbGVzOi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsfQ==\n++ export _ModuleTable002_\n++ _ModuleTable_Sz_=2\n++ export _ModuleTable_Sz_\n++ : -s sh\n+ eval\n++ which rocotorun\n+ ROCOTORUN=/apps/rocoto/1.3.3/bin/rocotorun\n++ which rocotostat\n+ ROCOTOSTAT=/apps/rocoto/1.3.3/bin/rocotostat\n++ which rocotocomplete\n+ ROCOTOCOMPLETE=/apps/rocoto/1.3.3/bin/rocotocomplete\n+ ROCOTO_SCHEDULER=slurm\n+ export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/apps/rocoto/1.3.3/bin:/usr/lib64/qt-3.3/bin:/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Brian.Curtis/.local/bin:/home/Brian.Curtis/bin\n+ export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages\n+ ECFLOW_START=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh\n++ id -u\n+ ECF_PORT=22097\n+ QUEUE=batch\n+ COMPILE_QUEUE=batch\n+ PARTITION=\n+ dprefix=/scratch1/NCEPDEV\n+ DISKNM=/scratch1/NCEPDEV/nems/emc.nemspara/RT\n+ STMP=/scratch1/NCEPDEV/stmp4\n+ PTMP=/scratch1/NCEPDEV/stmp2\n+ SCHEDULER=slurm\n+ cp fv3_conf/fv3_slurm.IN_hera fv3_conf/fv3_slurm.IN\n+ cp fv3_conf/compile_slurm.IN_hera fv3_conf/compile_slurm.IN\n+ mkdir -p /scratch1/NCEPDEV/stmp4/Brian.Curtis\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST\n+ [[ hera.intel = hera.* ]]\n+ NEW_BASELINE=/scratch1/NCEPDEV/stmp4/Brian.Curtis/FV3_RT/REGRESSION_TEST_INTEL\n+ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270\n+ mkdir -p /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270\n+ CREATE_BASELINE=false\n+ ROCOTO=false\n+ ECFLOW=false\n+ KEEP_RUNDIR=false\n+ SINGLE_NAME=\n+ TEST_35D=false\n+ TESTS_FILE=rt.conf\n+ getopts :cl:mn:kreh opt\n+ case $opt in\n+ ECFLOW=true\n+ ROCOTO=false\n+ getopts :cl:mn:kreh opt\n+ [[ \'\' != \'\' ]]\n+ [[ rt.conf =~ 35d ]]\n+ [[ hera.intel = hera.* ]]\n+ RTPWD=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL\n+ INPUTDATA_ROOT=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212\n+ INPUTDATA_ROOT_WW3=/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/input-data-20210212/WW3_input_data_20201220\n+ shift 1\n+ [[ 0 -gt 1 ]]\n+ [[ false == true ]]\n+ COMPILE_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/Compile_hera.intel.log\n+ REGRESSIONTEST_LOG=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/RegressionTests_hera.intel.log\n+ date\n+ echo \'Start Regression test\'\n+ echo\n+ source default_vars.sh\n++ [[ hera.intel = wcoss_cray ]]\n++ [[ hera.intel = wcoss_dell_p3 ]]\n++ [[ hera.intel = wcoss2 ]]\n++ [[ hera.intel = orion.* ]]\n++ [[ hera.intel = hera.* ]]\n++ TASKS_dflt=150\n++ TPN_dflt=40\n++ INPES_dflt=3\n++ JNPES_dflt=8\n++ TASKS_thrd=84\n++ TPN_thrd=20\n++ INPES_thrd=3\n++ JNPES_thrd=4\n++ TASKS_stretch=48\n++ TPN_stretch=12\n++ INPES_stretch=2\n++ JNPES_stretch=4\n++ TASKS_strnest=96\n++ TPN_strnest=12\n++ INPES_strnest=2\n++ JNPES_strnest=4\n++ TASKS_cpl_dflt=192\n++ TPN_cpl_dflt=40\n++ INPES_cpl_dflt=3\n++ JNPES_cpl_dflt=8\n++ THRD_cpl_dflt=1\n++ WPG_cpl_dflt=6\n++ MPB_cpl_dflt=\'0 143\'\n++ APB_cpl_dflt=\'0 149\'\n++ OPB_cpl_dflt=\'150 179\'\n++ IPB_cpl_dflt=\'180 191\'\n++ TASKS_cpl_dflt_wwav=204\n++ TPN_cpl_dflt_wwav=40\n++ INPES_cpl_dflt_wwav=3\n++ JNPES_cpl_dflt_wwav=8\n++ THRD_cpl_dflt_wwav=1\n++ WPG_cpl_dflt_wwav=6\n++ MPB_cpl_dflt_wwav=\'0 143\'\n++ APB_cpl_dflt_wwav=\'0 149\'\n++ OPB_cpl_dflt_wwav=\'150 179\'\n++ IPB_cpl_dflt_wwav=\'180 191\'\n++ WPB_cpl_dflt_wwav=\'192 203\'\n++ TASKS_cpl_thrd=120\n++ TPN_cpl_thrd=40\n++ INPES_cpl_thrd=3\n++ JNPES_cpl_thrd=4\n++ THRD_cpl_thrd=2\n++ WPG_cpl_thrd=6\n++ MPB_cpl_thrd=\'0 77\'\n++ APB_cpl_thrd=\'0 77\'\n++ OPB_cpl_thrd=\'78 107\'\n++ IPB_cpl_thrd=\'108 119\'\n++ TASKS_cpl_bmrk=480\n++ TPN_cpl_bmrk=40\n++ INPES_cpl_bmrk=6\n++ JNPES_cpl_bmrk=8\n++ THRD_cpl_bmrk=1\n++ WPG_cpl_bmrk=24\n++ MPB_cpl_bmrk=\'0 287\'\n++ APB_cpl_bmrk=\'0 311\'\n++ OPB_cpl_bmrk=\'312 431\'\n++ IPB_cpl_bmrk=\'432 479\'\n++ TASKS_cpl_wwav=520\n++ TPN_cpl_wwav=40\n++ INPES_cpl_wwav=6\n++ JNPES_cpl_wwav=8\n++ THRD_cpl_wwav=1\n++ WPG_cpl_wwav=24\n++ MPB_cpl_wwav=\'0 287\'\n++ APB_cpl_wwav=\'0 311\'\n++ OPB_cpl_wwav=\'312 431\'\n++ IPB_cpl_wwav=\'432 479\'\n++ WPB_cpl_wwav=\'480 519\'\n++ TASKS_cpl_c192=288\n++ TPN_cpl_c192=40\n++ INPES_cpl_c192=4\n++ JNPES_cpl_c192=8\n++ THRD_cpl_c192=1\n++ WPG_cpl_c192=12\n++ MPB_cpl_c192=\'0 191\'\n++ APB_cpl_c192=\'0 203\'\n++ OPB_cpl_c192=\'204 263\'\n++ IPB_cpl_c192=\'264 287\'\n++ TASKS_cpl_c384=318\n++ TPN_cpl_c384=40\n++ INPES_cpl_c384=3\n++ JNPES_cpl_c384=8\n++ THRD_cpl_c384=1\n++ WPG_cpl_c384=6\n++ MPB_cpl_c384=\'0 143\'\n++ APB_cpl_c384=\'0 149\'\n++ OPB_cpl_c384=\'150 269\'\n++ IPB_cpl_c384=\'270 317\'\n++ TASKS_datm_100=120\n++ TPN_datm_100=40\n++ MPB_datm_100=\'16 77\'\n++ APB_datm_100=\'0 15\'\n++ OPB_datm_100=\'78 107\'\n++ IPB_datm_100=\'108 119\'\n++ TASKS_datm_025=208\n++ TPN_datm_025=40\n++ MPB_datm_025=\'0 39\'\n++ APB_datm_025=\'0 39\'\n++ OPB_datm_025=\'40 159\'\n++ IPB_datm_025=\'160 207\'\n++ [[ intel = gnu ]]\n++ WLCLK_dflt=15\n+ TEST_NR=0\n+ COMPILE_NR=0\n+ COMPILE_PREV_WW3_NR=\n+ rm -f fail_test\n+ LOG_DIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel\n+ mkdir /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ MAX_BUILDS=10\n+ MAX_JOBS=30\n+ [[ hera.intel = jet.intel ]]\n+ ECFLOW_RUN=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/ecflow_run\n+ ECFLOW_SUITE=regtest_122270\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/ecflow_run\n+ mkdir -p /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/ecflow_run/regtest_122270\n+ cp head.h tail.h /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/ecflow_run\n+ cat\n+ [[ hera.intel = wcoss ]]\n+ [[ hera.intel = wcoss_cray ]]\n+ [[ hera.intel = wcoss_dell_p3 ]]\n+ [[ hera.intel = wcoss2 ]]\n+ [[ hera.intel = hera.* ]]\n+ QUEUE=batch\n+ new_compile=false\n+ in_metatask=false\n+ [[ -f rt.conf ]]\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# PROD tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # PROD tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_1\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017 =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017 =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_control | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_control | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_control ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 1\n+ TEST_NR=001\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_control\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_control_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_decomp | - jet.intel | |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_decomp | - jet.intel | | == \\#* ]]\n+ [[ RUN | fv3_ccpp_decomp | - jet.intel | | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_decomp | - jet.intel | | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_decomp \'|\' - jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_decomp\n++ echo RUN \'|\' fv3_ccpp_decomp \'|\' - jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- jet.intel\'\n++ echo RUN \'|\' fv3_ccpp_decomp \'|\' - jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' fv3_ccpp_decomp \'|\' - jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_decomp \'|\' - jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_decomp ]]\n+ [[ false == true ]]\n+ [[ - jet.intel != \'\' ]]\n+ [[ - jet.intel == -* ]]\n+ [[ - jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 2\n+ TEST_NR=002\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_decomp\n++ export \'TEST_DESCR=Compare FV3 CCPP decomp results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP decomp results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export INPES=6\n++ INPES=6\n++ export JNPES=4\n++ JNPES=4\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_decomp_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_2threads | | |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_2threads | | | == \\#* ]]\n+ [[ RUN | fv3_ccpp_2threads | | | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_2threads | | | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_2threads \'|\' \'|\' \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_2threads\n++ echo RUN \'|\' fv3_ccpp_2threads \'|\' \'|\' \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_2threads \'|\' \'|\' \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' fv3_ccpp_2threads \'|\' \'|\' \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_2threads \'|\' \'|\' \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_2threads ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 3\n+ TEST_NR=003\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_2threads\n++ export \'TEST_DESCR=Compare FV3 CCPP 2 threads results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP 2 threads results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export THRD=2\n++ THRD=2\n++ export TASKS=84\n++ TASKS=84\n++ export TPN=20\n++ TPN=20\n++ export INPES=3\n++ INPES=3\n++ export JNPES=4\n++ JNPES=4\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_2threads_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_restart | | | fv3_ccpp_control\'\n+ [[ 196 == 0 ]]\n+ [[ RUN | fv3_ccpp_restart | | | fv3_ccpp_control == \\#* ]]\n+ [[ RUN | fv3_ccpp_restart | | | fv3_ccpp_control == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_restart | | | fv3_ccpp_control == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_restart \'|\' \'|\' \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_restart\n++ echo RUN \'|\' fv3_ccpp_restart \'|\' \'|\' \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_restart \'|\' \'|\' \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' fv3_ccpp_restart \'|\' \'|\' \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_restart \'|\' \'|\' \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_restart ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 4\n+ TEST_NR=004\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_restart\n++ export \'TEST_DESCR=Compare FV3 CCPP restart results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP restart results with previous trunk version\'\n++ export CNTL_DIR=fv3_control\n++ CNTL_DIR=fv3_control\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHROT=12\n++ FHROT=12\n++ export FHMAX=24\n++ FHMAX=24\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export NGGPS_IC=.F.\n++ NGGPS_IC=.F.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MAKE_NH=.F.\n++ MAKE_NH=.F.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n++ export NA_INIT=0\n++ NA_INIT=0\n++ export FDIAG=3\n++ FDIAG=3\n++ export NSTF_NAME=2,0,1,0,5\n++ NSTF_NAME=2,0,1,0,5\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_restart_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ fv3_ccpp_control != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_1 == complete and fv3_ccpp_control_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control\'\n+ [[ 196 == 0 ]]\n+ [[ RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control == \\#* ]]\n+ [[ RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_read_inc \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_read_inc\n++ echo RUN \'|\' fv3_ccpp_read_inc \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_read_inc \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_read_inc \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_read_inc \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_read_inc ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 5\n+ TEST_NR=005\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_read_inc\n++ export \'TEST_DESCR=Compare FV3 CCPP read_inc results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP read_inc results with previous trunk version\'\n++ export CNTL_DIR=fv3_read_inc\n++ CNTL_DIR=fv3_read_inc\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export NGGPS_IC=.F.\n++ NGGPS_IC=.F.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MAKE_NH=.F.\n++ MAKE_NH=.F.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n++ export NA_INIT=0\n++ NA_INIT=0\n++ export FHMAX=48\n++ FHMAX=48\n++ export FDIAG=3\n++ FDIAG=3\n++ export READ_INCREMENT=.T.\n++ READ_INCREMENT=.T.\n++ export NSTF_NAME=2,0,1,0,5\n++ NSTF_NAME=2,0,1,0,5\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_read_inc_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ fv3_ccpp_control != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_1 == complete and fv3_ccpp_control_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_esmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_netcdf_esmf\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_esmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_esmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_esmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_esmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_netcdf_esmf ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 6\n+ TEST_NR=006\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf\n++ export \'TEST_DESCR=Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_netcdf_esmf\n++ CNTL_DIR=fv3_wrtGauss_netcdf_esmf\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf_esmf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf_esmf\'\\\'\'\'\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_netcdf_esmf_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_netcdf\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_netcdf ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 7\n+ TEST_NR=007\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_netcdf\n++ export \'TEST_DESCR=Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_netcdf\n++ CNTL_DIR=fv3_wrtGauss_netcdf\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_netcdf_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_netcdf_parallel\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_netcdf_parallel ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 8\n+ TEST_NR=008\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel\n++ export \'TEST_DESCR=Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_netcdf_parallel\n++ CNTL_DIR=fv3_wrtGauss_netcdf_parallel\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n+++ expr 150 / 40 + 1\n++ export NODES=4\n++ NODES=4\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf_parallel\'\\\'\' \'\\\'\'netcdf_parallel\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf_parallel\'\\\'\' \'\\\'\'netcdf_parallel\'\\\'\'\'\n++ export IDEFLATE=1\n++ IDEFLATE=1\n++ export NBITS=14\n++ NBITS=14\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_netcdf_parallel_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGlatlon_netcdf | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGlatlon_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGlatlon_netcdf\n++ echo RUN \'|\' fv3_ccpp_wrtGlatlon_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGlatlon_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGlatlon_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGlatlon_netcdf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGlatlon_netcdf ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 9\n+ TEST_NR=009\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGlatlon_netcdf\n++ export \'TEST_DESCR=Compare FV3 CCPP Global latlon grid netcdf output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Global latlon grid netcdf output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGlatlon_netcdf\n++ CNTL_DIR=fv3_wrtGlatlon_netcdf\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nc phyf024.nc dynf000.nc dynf024.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export \'OUTPUT_GRID=\'\\\'\'global_latlon\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'global_latlon\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGlatlon_netcdf_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_nemsio\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_nemsio ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 10\n+ TEST_NR=010\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_nemsio\n++ export \'TEST_DESCR=Compare FV3 CCPP Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_nemsio\n++ CNTL_DIR=fv3_wrtGauss_nemsio\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_nemsio_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c192 | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c192 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_nemsio_c192\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c192 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c192 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c192 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c192 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_nemsio_c192 ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 11\n+ TEST_NR=011\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192\n++ export \'TEST_DESCR=Compare FV3 CCPP c192 Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP c192 Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_nemsio_c192\n++ CNTL_DIR=fv3_wrtGauss_nemsio_c192\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=300\n++ TASKS=300\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export SYEAR=2017\n++ SYEAR=2017\n++ export SMONTH=11\n++ SMONTH=11\n++ export SDAY=01\n++ SDAY=01\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_nemsio_c192_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_stochy | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_stochy | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_stochy | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_stochy | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_stochy\n++ echo RUN \'|\' fv3_ccpp_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_stochy ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 12\n+ TEST_NR=012\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_stochy\n++ export \'TEST_DESCR=Compare FV3 CCPP stochastic results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP stochastic results with previous trunk version\'\n++ export CNTL_DIR=fv3_stochy\n++ CNTL_DIR=fv3_stochy\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DO_SPPT=.T.\n++ DO_SPPT=.T.\n++ export DO_SHUM=.T.\n++ DO_SHUM=.T.\n++ export DO_SKEB=.T.\n++ DO_SKEB=.T.\n++ export SKEB=0.3\n++ SKEB=0.3\n++ export SHUM=0.003\n++ SHUM=0.003\n++ export SPPT=0.2\n++ SPPT=0.2\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export FHMAX=12\n++ FHMAX=12\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_stochy_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_ca | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_ca | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_ca | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_ca | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_ca \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_ca\n++ echo RUN \'|\' fv3_ccpp_ca \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_ca \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_ca \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_ca \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_ca ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 13\n+ TEST_NR=013\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_ca\n++ export \'TEST_DESCR=Compare FV3 cellular automata results with previous trunk version (sub-grid and global) CCPP\'\n++ TEST_DESCR=\'Compare FV3 cellular automata results with previous trunk version (sub-grid and global) CCPP\'\n++ export CNTL_DIR=fv3_ca\n++ CNTL_DIR=fv3_ca\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_ca.nml.IN\n++ INPUT_NML=ccpp_ca.nml.IN\n++ export DO_CA=.T.\n++ DO_CA=.T.\n++ export CA_SGS=.T.\n++ CA_SGS=.T.\n++ export CA_GLOBAL=.T.\n++ CA_GLOBAL=.T.\n++ export FHMAX=12\n++ FHMAX=12\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_ca_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_lndp | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_lndp | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_lndp | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_lndp | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_lndp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_lndp\n++ echo RUN \'|\' fv3_ccpp_lndp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_lndp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_lndp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_lndp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_lndp ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 14\n+ TEST_NR=014\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_lndp\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version, with land pert scheme turned on\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version, with land pert scheme turned on\'\n++ export CNTL_DIR=fv3_lndp\n++ CNTL_DIR=fv3_lndp\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n+++ expr 150 / 40 + 1\n++ export NODES=4\n++ NODES=4\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_lndp.nml.IN\n++ INPUT_NML=ccpp_lndp.nml.IN\n++ export LNDP_TYPE=2\n++ LNDP_TYPE=2\n++ export N_VAR_LNDP=2\n++ N_VAR_LNDP=2\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_lndp_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\'# temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it\'\n+ [[ 120 == 0 ]]\n+ [[ # temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control\'\n+ [[ 196 == 0 ]]\n+ [[ RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control == \\#* ]]\n+ [[ RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_iau \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_iau\n++ echo RUN \'|\' fv3_ccpp_iau \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_iau \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_iau \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=fv3_ccpp_control\n++ echo RUN \'|\' fv3_ccpp_iau \'|\' \'|\' fv3 \'|\' fv3_ccpp_control\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_iau ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 15\n+ TEST_NR=015\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_iau\n++ export \'TEST_DESCR=Compare FV3 CCPP IAU results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP IAU results with previous trunk version\'\n++ export CNTL_DIR=fv3_iau\n++ CNTL_DIR=fv3_iau\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export NGGPS_IC=.F.\n++ NGGPS_IC=.F.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MAKE_NH=.F.\n++ MAKE_NH=.F.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n++ export NA_INIT=0\n++ NA_INIT=0\n++ export FHMAX=48\n++ FHMAX=48\n++ export FDIAG=3\n++ FDIAG=3\n++ export NSTF_NAME=2,0,1,0,5\n++ NSTF_NAME=2,0,1,0,5\n++ export IAU_INC_FILES=fv3_increment.nc\n++ IAU_INC_FILES=fv3_increment.nc\n++ export IAU_DRYMASSFIXER=.true.\n++ IAU_DRYMASSFIXER=.true.\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_iau_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ fv3_ccpp_control != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_1 == complete and fv3_ccpp_control_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_lheatstrg | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_lheatstrg | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_lheatstrg | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_lheatstrg | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_lheatstrg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_lheatstrg\n++ echo RUN \'|\' fv3_ccpp_lheatstrg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_lheatstrg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_lheatstrg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_lheatstrg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_lheatstrg ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 16\n+ TEST_NR=016\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_lheatstrg\n++ export \'TEST_DESCR=Compare FV3 CCPP control with lheatstrg on Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control with lheatstrg on Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_lheatstrg\n++ CNTL_DIR=fv3_lheatstrg\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n++ export LHEATSTRG=.T.\n++ LHEATSTRG=.T.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_lheatstrg_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_1 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'# WW3 not working on Cheyenne in the past, need to check if it works now\'\n+ [[ 72 == 0 ]]\n+ [[ # WW3 not working on Cheyenne in the past, need to check if it works now == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y\'\n++ cut \'-d|\' -f3\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'+ wcoss_dell_p3 hera.intel orion.intel\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel != \'\' ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == -* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == +* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_2\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_GFDLMP WW3=Y =~ WW3=Y ]]\n+ [[ \'\' != \'\' ]]\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_GFDLMP WW3=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_GFDLMP WW3=Y =~ WW3=Y ]]\n+ COMPILE_PREV_WW3_NR=2\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmprad\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'+ wcoss_dell_p3 hera.intel orion.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmprad ]]\n+ [[ false == true ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel != \'\' ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == -* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == +* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 17\n+ TEST_NR=017\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmprad\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP radiation interaction option with the control\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP radiation interaction option with the control\'\n++ export CNTL_DIR=fv3_gfdlmprad\n++ CNTL_DIR=fv3_gfdlmprad\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc out_grd.glo_30m\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc out_grd.glo_30m\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=192\n++ TASKS=192\n++ DT_ATMOS=1200\n++ export LGFDLMPRAD=.true.\n++ LGFDLMPRAD=.true.\n++ export EFFR_IN=.true.\n++ EFFR_IN=.true.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export CPL=.true.\n++ CPL=.true.\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export \'wav_petlist_bounds=150 191\'\n++ wav_petlist_bounds=\'150 191\'\n++ export coupling_interval_sec=3600.0\n++ coupling_interval_sec=3600.0\n++ export NEMS_CONFIGURE=nems.configure.blocked_atm_wav.IN\n++ NEMS_CONFIGURE=nems.configure.blocked_atm_wav.IN\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmprad_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_2 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_atmwav \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmprad_atmwav\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_atmwav \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'+ wcoss_dell_p3 hera.intel orion.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_atmwav \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_atmwav \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_atmwav \'|\' + wcoss_dell_p3 hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmprad_atmwav ]]\n+ [[ false == true ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel != \'\' ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == -* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel == +* ]]\n+ [[ + wcoss_dell_p3 hera.intel orion.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 18\n+ TEST_NR=018\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmprad_atmwav\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP radiation interaction 2way atm-way coupling option with the control\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP radiation interaction 2way atm-way coupling option with the control\'\n++ export CNTL_DIR=fv3_gfdlmprad_atmwav\n++ CNTL_DIR=fv3_gfdlmprad_atmwav\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc out_grd.glo_30m\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc out_grd.glo_30m\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=192\n++ TASKS=192\n++ DT_ATMOS=1200\n++ export LGFDLMPRAD=.true.\n++ LGFDLMPRAD=.true.\n++ export EFFR_IN=.true.\n++ EFFR_IN=.true.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export CPL=.true.\n++ CPL=.true.\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export CPLWAV2ATM=.T.\n++ CPLWAV2ATM=.T.\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export \'wav_petlist_bounds=150 191\'\n++ wav_petlist_bounds=\'150 191\'\n++ export coupling_interval_sec=1200.0\n++ coupling_interval_sec=1200.0\n++ export NEMS_CONFIGURE=nems.configure.blocked_atm_wav_2way.IN\n++ NEMS_CONFIGURE=nems.configure.blocked_atm_wav_2way.IN\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmprad_atmwav_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_2 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c768 \'|\' + hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_wrtGauss_nemsio_c768\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c768 \'|\' + hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'+ hera.intel orion.intel\'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c768 \'|\' + hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c768 \'|\' + hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_wrtGauss_nemsio_c768 \'|\' + hera.intel orion.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_wrtGauss_nemsio_c768 ]]\n+ [[ false == true ]]\n+ [[ + hera.intel orion.intel != \'\' ]]\n+ [[ + hera.intel orion.intel == -* ]]\n+ [[ + hera.intel orion.intel == +* ]]\n+ [[ + hera.intel orion.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 19\n+ TEST_NR=019\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768\n++ export \'TEST_DESCR=Compare FV3 CCPP c768 Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP c768 Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_wrtGauss_nemsio_c768\n++ CNTL_DIR=fv3_wrtGauss_nemsio_c768\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf006.nemsio dynf006.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc out_grd.glo_10m\n out_grd.ant_9km\n out_grd.aoc_9km\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf006.nemsio dynf006.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc out_grd.glo_10m\n out_grd.ant_9km\n out_grd.aoc_9km\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=1470\n++ TASKS=1470\n++ [[ hera.intel = cheyenne.* ]]\n++ [[ hera.intel = hera.* ]]\n++ export TPN=10\n++ TPN=10\n++ export INPES=16\n++ INPES=16\n++ export JNPES=12\n++ JNPES=12\n++ export NPX=769\n++ NPX=769\n++ export NPY=769\n++ NPY=769\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export SYEAR=2017\n++ SYEAR=2017\n++ export SMONTH=01\n++ SMONTH=01\n++ export SDAY=06\n++ SDAY=06\n++ export DT_ATMOS=225\n++ DT_ATMOS=225\n++ export FHMAX=06\n++ FHMAX=06\n++ export WLCLK=30\n++ WLCLK=30\n++ export WRITE_GROUP=3\n++ WRITE_GROUP=3\n++ export WRTTASK_PER_GROUP=36\n++ WRTTASK_PER_GROUP=36\n++ export FDIAG=0,1,2,3,4,5,6\n++ FDIAG=0,1,2,3,4,5,6\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IMO=3072\n++ IMO=3072\n++ export JMO=1536\n++ JMO=1536\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t1534.3072.1536.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t1534.3072.1536.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t1534.3072.1536.rg.grb\'\\\'\',\'\n++ export CPL=.true.\n++ CPL=.true.\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export \'atm_petlist_bounds=0 1259\'\n++ atm_petlist_bounds=\'0 1259\'\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export \'wav_petlist_bounds=1260 1469\'\n++ wav_petlist_bounds=\'1260 1469\'\n++ export coupling_interval_sec=1800.0\n++ coupling_interval_sec=1800.0\n++ export NEMS_CONFIGURE=nems.configure.blocked_atm_wav.IN\n++ NEMS_CONFIGURE=nems.configure.blocked_atm_wav.IN\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=147\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_wrtGauss_nemsio_c768_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_2 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_3\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_FV3WAM 32BIT=Y MULTI_GASES=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_FV3WAM 32BIT=Y MULTI_GASES=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_FV3WAM 32BIT=Y MULTI_GASES=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_multigases | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_multigases | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_multigases | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_multigases | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_multigases \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_multigases\n++ echo RUN \'|\' fv3_ccpp_multigases \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_multigases \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_multigases \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_multigases \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_multigases ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 20\n+ TEST_NR=020\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_multigases\n++ export \'TEST_DESCR=Compare CCPP FV3 multi-gases results with previous trunk version\'\n++ TEST_DESCR=\'Compare CCPP FV3 multi-gases results with previous trunk version\'\n++ export CNTL_DIR=fv3_multigases\n++ CNTL_DIR=fv3_multigases\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export NPZ=149\n++ NPZ=149\n++ export NPZP=150\n++ NPZP=150\n++ DT_ATMOS=225\n++ SYEAR=2017\n++ SMONTH=01\n++ SDAY=19\n++ SHOUR=06\n++ export FHMAX=06\n++ FHMAX=06\n++ export FDIAG=0,1,2,3,4,5,6\n++ FDIAG=0,1,2,3,4,5,6\n++ export NSTF_NAME=0,0,1,0,5\n++ NSTF_NAME=0,0,1,0,5\n++ export INPUT_NML=ccpp_multi_gases.nml.IN\n++ INPUT_NML=ccpp_multi_gases.nml.IN\n++ export FV3_RUN=ccpp_multigases_run.IN\n++ FV3_RUN=ccpp_multigases_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_fv3wam\n++ CCPP_SUITE=FV3_GFS_2017_fv3wam\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_multigases_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_3 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_4\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_STRETCHED 32BIT=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_STRETCHED 32BIT=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017,FV3_GFS_2017_STRETCHED 32BIT=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_control_32bit | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_control_32bit | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_control_32bit | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_control_32bit | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_control_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_control_32bit\n++ echo RUN \'|\' fv3_ccpp_control_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_control_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_control_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_control_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_control_32bit ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 21\n+ TEST_NR=021\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_control_32bit\n++ export \'TEST_DESCR=Compare FV3 CCPP 32bit control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP 32bit control results with previous trunk version\'\n++ export CNTL_DIR=fv3_control_32bit\n++ CNTL_DIR=fv3_control_32bit\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_control_32bit_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_4 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_stretched | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_stretched | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_stretched | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_stretched | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_stretched \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_stretched\n++ echo RUN \'|\' fv3_ccpp_stretched \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_stretched \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_stretched \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_stretched \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_stretched ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 22\n+ TEST_NR=022\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_stretched\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_stretched\n++ CNTL_DIR=fv3_stretched\n++ export \'LIST_FILES= atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\' atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ INPES=2\n++ JNPES=4\n++ TPN=12\n++ TASKS=48\n++ MAKE_NH=.T.\n++ NA_INIT=1\n++ EXTERNAL_IC=.T.\n++ NGGPS_IC=.T.\n++ MOUNTAIN=.F.\n++ WARM_START=.F.\n++ FDIAG=3\n++ HYBEDMF=.T.\n++ SATMEDMF=.F.\n++ SYEAR=2018\n++ SMONTH=10\n++ SDAY=15\n++ SHOUR=00\n++ FHMAX=48\n++ DT_ATMOS=450\n++ QUILTING=.false.\n++ export INPUT_NML=ccpp_stretched-input.nml.IN\n++ INPUT_NML=ccpp_stretched-input.nml.IN\n++ export FV3_RUN=ccpp_stretched_run.IN\n++ FV3_RUN=ccpp_stretched_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_stretched\n++ CCPP_SUITE=FV3_GFS_2017_stretched\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_stretched_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_4 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_stretched_nest | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_stretched_nest | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_stretched_nest | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_stretched_nest | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_stretched_nest \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_stretched_nest\n++ echo RUN \'|\' fv3_ccpp_stretched_nest \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_stretched_nest \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_stretched_nest \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_stretched_nest \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_stretched_nest ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 23\n+ TEST_NR=023\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_stretched_nest\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_stretched_nest\n++ CNTL_DIR=fv3_stretched_nest\n++ export \'LIST_FILES= atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc atmos_4xdaily.nest02.tile7.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history2d.nest02.tile7.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc fv3_history.nest02.tile7.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.nest02.nc RESTART/fv_BC_ne.res.nest02.nc RESTART/fv_BC_sw.res.nest02.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_core.res.nest02.tile7.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_srf_wnd.res.nest02.tile7.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/fv_tracer.res.nest02.tile7.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/phy_data.nest02.tile7.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/sfc_data.nest02.tile7.nc\'\n++ LIST_FILES=\' atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc atmos_4xdaily.nest02.tile7.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history2d.nest02.tile7.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc fv3_history.nest02.tile7.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.nest02.nc RESTART/fv_BC_ne.res.nest02.nc RESTART/fv_BC_sw.res.nest02.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_core.res.nest02.tile7.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_srf_wnd.res.nest02.tile7.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/fv_tracer.res.nest02.tile7.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/phy_data.nest02.tile7.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/sfc_data.nest02.tile7.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ INPES=2\n++ JNPES=4\n++ TPN=12\n++ TASKS=96\n++ export INPES_NEST=6\n++ INPES_NEST=6\n++ export JNPES_NEST=8\n++ JNPES_NEST=8\n++ export MAKE_NH_NEST=.F.\n++ MAKE_NH_NEST=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export FDIAG=3\n++ FDIAG=3\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export SYEAR=2018\n++ SYEAR=2018\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=15\n++ SDAY=15\n++ export SHOUR=00\n++ SHOUR=00\n++ export FHMAX=48\n++ FHMAX=48\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ QUILTING=.false.\n++ export INPUT_NML=ccpp_stretched-nest-input.nml.IN\n++ INPUT_NML=ccpp_stretched-nest-input.nml.IN\n++ export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN\n++ INPUT_NEST02_NML=ccpp_input_nest02.nml.IN\n++ export FV3_RUN=ccpp_stretched_run.IN\n++ FV3_RUN=ccpp_stretched_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_stretched\n++ CCPP_SUITE=FV3_GFS_2017_stretched\n++ [[ hera.intel = *.gnu ]]\n+ NODES=8\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_stretched_nest_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_4 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_5\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN 32BIT=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN 32BIT=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN 32BIT=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_regional_control | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_regional_control | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_regional_control | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_regional_control | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_regional_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_regional_control\n++ echo RUN \'|\' fv3_ccpp_regional_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_regional_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_regional_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_regional_control \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_regional_control ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 24\n+ TEST_NR=024\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_regional_control\n++ export \'TEST_DESCR=Compare FV3 CCPP regional control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP regional control results with previous trunk version\'\n++ export CNTL_DIR=fv3_regional_control\n++ CNTL_DIR=fv3_regional_control\n++ export \'LIST_FILES= atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc RESTART/fv_core.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc\'\n++ LIST_FILES=\' atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc RESTART/fv_core.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=24\n++ TASKS=24\n++ export FV3_RUN=ccpp_regional_run.IN\n++ FV3_RUN=ccpp_regional_run.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export H2O_PHYS=.T.\n++ H2O_PHYS=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ export INPUT_NML=ccpp_regional.nml.IN\n++ INPUT_NML=ccpp_regional.nml.IN\n++ export FDIAG=3\n++ FDIAG=3\n++ export INPES=4\n++ INPES=4\n++ export JNPES=6\n++ JNPES=6\n++ export WRITE_RESTART_WITH_BCS=.true.\n++ WRITE_RESTART_WITH_BCS=.true.\n+ NODES=0\n+ (( NODES * TPN < TASKS ))\n+ NODES=1\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_regional_control_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_5 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control\'\n+ [[ 205 == 0 ]]\n+ [[ RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control == \\#* ]]\n+ [[ RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_regional_restart \'|\' \'|\' fv3 \'|\' fv3_ccpp_regional_control\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_regional_restart\n++ echo RUN \'|\' fv3_ccpp_regional_restart \'|\' \'|\' fv3 \'|\' fv3_ccpp_regional_control\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_regional_restart \'|\' \'|\' fv3 \'|\' fv3_ccpp_regional_control\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_regional_restart \'|\' \'|\' fv3 \'|\' fv3_ccpp_regional_control\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=fv3_ccpp_regional_control\n++ echo RUN \'|\' fv3_ccpp_regional_restart \'|\' \'|\' fv3 \'|\' fv3_ccpp_regional_control\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_regional_restart ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 25\n+ TEST_NR=025\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_regional_restart\n++ export \'TEST_DESCR=Compare FV3 CCPP regional restart results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP regional restart results with previous trunk version\'\n++ export CNTL_DIR=fv3_regional_restart\n++ CNTL_DIR=fv3_regional_restart\n++ export \'LIST_FILES= atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc \'\n++ LIST_FILES=\' atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc \'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=24\n++ TASKS=24\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export FV3_RUN=ccpp_regional_run.IN\n++ FV3_RUN=ccpp_regional_run.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export H2O_PHYS=.T.\n++ H2O_PHYS=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ export INPUT_NML=ccpp_regional.nml.IN\n++ INPUT_NML=ccpp_regional.nml.IN\n++ export FDIAG=3\n++ FDIAG=3\n++ export INPES=4\n++ INPES=4\n++ export JNPES=6\n++ JNPES=6\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export NGGPS_IC=.F.\n++ NGGPS_IC=.F.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n++ export NA_INIT=0\n++ NA_INIT=0\n+ NODES=0\n+ (( NODES * TPN < TASKS ))\n+ NODES=1\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_regional_restart_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ fv3_ccpp_regional_control != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_5 == complete and fv3_ccpp_regional_control_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_regional_quilt | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_regional_quilt | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_regional_quilt | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_regional_quilt | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_regional_quilt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_regional_quilt\n++ echo RUN \'|\' fv3_ccpp_regional_quilt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_regional_quilt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_regional_quilt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_regional_quilt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_regional_quilt ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 26\n+ TEST_NR=026\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_regional_quilt\n++ export \'TEST_DESCR=Compare FV3 CCPP regional quilt results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP regional quilt results with previous trunk version\'\n++ export CNTL_DIR=fv3_regional_quilt\n++ CNTL_DIR=fv3_regional_quilt\n++ export \'LIST_FILES= atmos_4xdaily.nc dynf000.nc dynf024.nc phyf000.nc phyf024.nc \'\n++ LIST_FILES=\' atmos_4xdaily.nc dynf000.nc dynf024.nc phyf000.nc phyf024.nc \'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=28\n++ TASKS=28\n++ export FV3_RUN=ccpp_regional_run.IN\n++ FV3_RUN=ccpp_regional_run.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export H2O_PHYS=.T.\n++ H2O_PHYS=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ export INPUT_NML=ccpp_regional.nml.IN\n++ INPUT_NML=ccpp_regional.nml.IN\n++ export FDIAG=3\n++ FDIAG=3\n++ export INPES=6\n++ INPES=6\n++ export JNPES=4\n++ JNPES=4\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=0\n+ (( NODES * TPN < TASKS ))\n+ NODES=1\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_regional_quilt_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_5 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_regional_quilt_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_regional_quilt_netcdf_parallel\n++ echo RUN \'|\' fv3_ccpp_regional_quilt_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_regional_quilt_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_regional_quilt_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_regional_quilt_netcdf_parallel \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_regional_quilt_netcdf_parallel ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 27\n+ TEST_NR=027\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel\n++ export \'TEST_DESCR=Compare FV3 CCPP regional quilt results with parallel netcdf with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP regional quilt results with parallel netcdf with previous trunk version\'\n++ export CNTL_DIR=fv3_regional_quilt_netcdf_parallel\n++ CNTL_DIR=fv3_regional_quilt_netcdf_parallel\n++ export \'LIST_FILES= atmos_4xdaily.nc dynf000.nc dynf024.nc phyf000.nc phyf024.nc \'\n++ LIST_FILES=\' atmos_4xdaily.nc dynf000.nc dynf024.nc phyf000.nc phyf024.nc \'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=28\n++ TASKS=28\n++ export FV3_RUN=ccpp_regional_run.IN\n++ FV3_RUN=ccpp_regional_run.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export H2O_PHYS=.T.\n++ H2O_PHYS=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ export INPUT_NML=ccpp_regional.nml.IN\n++ INPUT_NML=ccpp_regional.nml.IN\n++ export FDIAG=3\n++ FDIAG=3\n++ export INPES=6\n++ INPES=6\n++ export JNPES=4\n++ JNPES=4\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=0\n+ (( NODES * TPN < TASKS ))\n+ NODES=1\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_regional_quilt_netcdf_parallel_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_5 == complete\'\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_regional_c768 | gaea.intel | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_regional_c768 | jet.intel | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_regional_c768 | orion.intel | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_6\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmp | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmp | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmp | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmp | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmp\n++ echo RUN \'|\' fv3_ccpp_gfdlmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfdlmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmp ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 28\n+ TEST_NR=028\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmp\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfdlmp\n++ CNTL_DIR=fv3_gfdlmp\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmp_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_6 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_gwd | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_gwd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmprad_gwd\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_gwd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_gwd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_gwd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_gwd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmprad_gwd ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 29\n+ TEST_NR=029\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmprad_gwd\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP radiation interaction option and gravity wave drag with the control\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP radiation interaction option and gravity wave drag with the control\'\n++ export CNTL_DIR=fv3_gfdlmprad_gwd\n++ CNTL_DIR=fv3_gfdlmprad_gwd\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export LGFDLMPRAD=.true.\n++ LGFDLMPRAD=.true.\n++ export EFFR_IN=.true.\n++ EFFR_IN=.true.\n++ export DO_UGWP=.true.\n++ DO_UGWP=.true.\n++ export DO_TOFD=.true.\n++ DO_TOFD=.true.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmprad_gwd_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_6 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_noahmp | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmprad_noahmp\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_noahmp \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmprad_noahmp ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 30\n+ TEST_NR=030\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmprad_noahmp\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP radiation interaction and Noah MP option with the control\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP radiation interaction and Noah MP option with the control\'\n++ export CNTL_DIR=fv3_gfdlmprad_noahmp\n++ CNTL_DIR=fv3_gfdlmprad_noahmp\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export LGFDLMPRAD=.true.\n++ LGFDLMPRAD=.true.\n++ export EFFR_IN=.true.\n++ EFFR_IN=.true.\n++ export LSM=2\n++ LSM=2\n++ export LANDICE=.false.\n++ LANDICE=.false.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp_noahmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp_noahmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmprad_noahmp_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_6 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_7\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_CSAWMGSHOC,FV3_GFS_2017_CSAWMG,FV3_GFS_2017_SATMEDMF,FV3_GFS_2017_SATMEDMFQ =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_CSAWMGSHOC,FV3_GFS_2017_CSAWMG,FV3_GFS_2017_SATMEDMF,FV3_GFS_2017_SATMEDMFQ =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_CSAWMGSHOC,FV3_GFS_2017_CSAWMG,FV3_GFS_2017_SATMEDMF,FV3_GFS_2017_SATMEDMFQ =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_csawmgshoc | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_csawmgshoc | | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_csawmg3shoc127 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_csawmg3shoc127 | | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_csawmg | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_csawmg | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_csawmg | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_csawmg | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_csawmg\n++ echo RUN \'|\' fv3_ccpp_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_csawmg ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 31\n+ TEST_NR=031\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_csawmg\n++ export \'TEST_DESCR=Compare FV3 CCPP csawmg results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP csawmg results with previous trunk version\'\n++ export CNTL_DIR=fv3_csawmg\n++ CNTL_DIR=fv3_csawmg\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=600\n++ export INPUT_NML=ccpp_csawmg.nml.IN\n++ INPUT_NML=ccpp_csawmg.nml.IN\n++ export FV3_RUN=ccpp_csawmg_run.IN\n++ FV3_RUN=ccpp_csawmg_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_csawmg\n++ CCPP_SUITE=FV3_GFS_2017_csawmg\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_csawmg_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_7 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_satmedmf | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_satmedmf | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_satmedmf | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_satmedmf | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_satmedmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_satmedmf\n++ echo RUN \'|\' fv3_ccpp_satmedmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_satmedmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_satmedmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_satmedmf \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_satmedmf ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 32\n+ TEST_NR=032\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_satmedmf\n++ export \'TEST_DESCR=Compare FV3 CCPP control with satmedmf on Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control with satmedmf on Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_satmedmf\n++ CNTL_DIR=fv3_satmedmf\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DT_ATMOS=1200\n++ DT_ATMOS=1200\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export FV3_RUN=ccpp_satmedmf_run.IN\n++ FV3_RUN=ccpp_satmedmf_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_satmedmf\n++ CCPP_SUITE=FV3_GFS_2017_satmedmf\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_satmedmf_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_7 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_satmedmfq | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_satmedmfq | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_satmedmfq | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_satmedmfq | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_satmedmfq\n++ echo RUN \'|\' fv3_ccpp_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_satmedmfq \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_satmedmfq ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 33\n+ TEST_NR=033\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_satmedmfq\n++ export \'TEST_DESCR=Compare FV3 CCPP control with satmedmfq on Gaussian grid nemsio output results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control with satmedmfq on Gaussian grid nemsio output results with previous trunk version\'\n++ export CNTL_DIR=fv3_satmedmfq\n++ CNTL_DIR=fv3_satmedmfq\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DT_ATMOS=1200\n++ DT_ATMOS=1200\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export ISATMEDMF=1\n++ ISATMEDMF=1\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export FV3_RUN=ccpp_satmedmf_run.IN\n++ FV3_RUN=ccpp_satmedmf_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_satmedmfq\n++ CCPP_SUITE=FV3_GFS_2017_satmedmfq\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_satmedmfq_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_7 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_8\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_CPT_V0,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RAP,FV3_HRRR,FV3_RRFS_V1BETA 32BIT=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_CPT_V0,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RAP,FV3_HRRR,FV3_RRFS_V1BETA 32BIT=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_CPT_V0,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RAP,FV3_HRRR,FV3_RRFS_V1BETA 32BIT=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmp_32bit | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmp_32bit | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmp_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmp_32bit\n++ echo RUN \'|\' fv3_ccpp_gfdlmp_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfdlmp_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmp_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmp_32bit \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmp_32bit ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 34\n+ TEST_NR=034\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmp_32bit\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFDL-MP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFDL-MP results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfdlmp_32bit\n++ CNTL_DIR=fv3_gfdlmp_32bit\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmp_32bit_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfdlmprad_32bit_post | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_32bit_post \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfdlmprad_32bit_post\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_32bit_post \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_32bit_post \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_32bit_post \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfdlmprad_32bit_post \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfdlmprad_32bit_post ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 35\n+ TEST_NR=035\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfdlmprad_32bit_post\n++ export \'TEST_DESCR=Compare FV3 CCPP GFDL-MP radiation interaction / inline post option with the control\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFDL-MP radiation interaction / inline post option with the control\'\n++ export CNTL_DIR=fv3_gfdlmprad_32bit_post\n++ CNTL_DIR=fv3_gfdlmprad_32bit_post\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio GFSFLX.GrbF00 GFSPRS.GrbF00 GFSFLX.GrbF24 GFSPRS.GrbF24 RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio GFSFLX.GrbF00 GFSPRS.GrbF00 GFSFLX.GrbF24 GFSPRS.GrbF24 RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export LGFDLMPRAD=.true.\n++ LGFDLMPRAD=.true.\n++ export EFFR_IN=.true.\n++ EFFR_IN=.true.\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.true.\n++ WRITE_DOPOST=.true.\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp_gfdlmp.nml.IN\n++ INPUT_NML=ccpp_gfdlmp.nml.IN\n++ export FV3_RUN=ccpp_gfdlmp_run.IN\n++ FV3_RUN=ccpp_gfdlmp_run.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfdlmprad_32bit_post_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_cpt | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_cpt | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_cpt | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_cpt | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_cpt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_cpt\n++ echo RUN \'|\' fv3_ccpp_cpt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_cpt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_cpt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_cpt \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_cpt ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 36\n+ TEST_NR=036\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_cpt\n++ export \'TEST_DESCR=Compare FV3 CCPP CPT results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP CPT results with previous trunk version\'\n++ export CNTL_DIR=fv3_cpt\n++ CNTL_DIR=fv3_cpt\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export DT_ATMOS=300\n++ DT_ATMOS=300\n++ export SYEAR=2017\n++ SYEAR=2017\n++ export SMONTH=08\n++ SMONTH=08\n++ export SDAY=22\n++ SDAY=22\n++ export SHOUR=00\n++ SHOUR=00\n++ export TASKS=204\n++ TASKS=204\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export INPES=4\n++ INPES=4\n++ export JNPES=8\n++ JNPES=8\n++ export NPZ=127\n++ NPZ=127\n++ export NPZP=128\n++ NPZP=128\n++ export INPUT_NML=ccpp_cpt.nml.IN\n++ INPUT_NML=ccpp_cpt.nml.IN\n++ export FV3_RUN=ccpp_cpt_run.IN\n++ FV3_RUN=ccpp_cpt_run.IN\n++ export CCPP_SUITE=FV3_CPT_v0\n++ CCPP_SUITE=FV3_CPT_v0\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n+ NODES=5\n+ (( NODES * TPN < TASKS ))\n+ NODES=6\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_cpt_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gsd | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gsd | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gsd | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gsd | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gsd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gsd\n++ echo RUN \'|\' fv3_ccpp_gsd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gsd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gsd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gsd \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gsd ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 37\n+ TEST_NR=037\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gsd\n++ export \'TEST_DESCR=Compare FV3 CCPP GSD results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GSD results with previous trunk version\'\n++ export CNTL_DIR=fv3_gsd\n++ CNTL_DIR=fv3_gsd\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc phyf027.tile1.nc phyf027.tile2.nc phyf027.tile3.nc phyf027.tile4.nc phyf027.tile5.nc phyf027.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc dynf027.tile1.nc dynf027.tile2.nc dynf027.tile3.nc dynf027.tile4.nc dynf027.tile5.nc dynf027.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=48\n++ FHMAX=48\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GSD_v0\n++ CCPP_SUITE=FV3_GSD_v0\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export IMFSHALCNV=3\n++ IMFSHALCNV=3\n++ export IMFDEEPCNV=3\n++ IMFDEEPCNV=3\n++ export LSM=3\n++ LSM=3\n++ export LSOIL_LSM=9\n++ LSOIL_LSM=9\n++ export KICE=9\n++ KICE=9\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gsd_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'# These two tests crash with NaNs on jet.intel\'\n+ [[ 46 == 0 ]]\n+ [[ # These two tests crash with NaNs on jet.intel == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_rap | - jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_rap | - jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_rap | - jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_rap | - jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_rap \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_rap\n++ echo RUN \'|\' fv3_ccpp_rap \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- jet.intel\'\n++ echo RUN \'|\' fv3_ccpp_rap \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_rap \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_rap \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_rap ]]\n+ [[ false == true ]]\n+ [[ - jet.intel != \'\' ]]\n+ [[ - jet.intel == -* ]]\n+ [[ - jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 38\n+ TEST_NR=038\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_rap\n++ export \'TEST_DESCR=Compare FV3 CCPP RAP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP RAP results with previous trunk version\'\n++ export CNTL_DIR=fv3_rap\n++ CNTL_DIR=fv3_rap\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_RAP\n++ CCPP_SUITE=FV3_RAP\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export DO_MYNNSFCLAY=.T.\n++ DO_MYNNSFCLAY=.T.\n++ export IMFSHALCNV=3\n++ IMFSHALCNV=3\n++ export IMFDEEPCNV=3\n++ IMFDEEPCNV=3\n++ export LSM=3\n++ LSM=3\n++ export LSOIL_LSM=9\n++ LSOIL_LSM=9\n++ export KICE=9\n++ KICE=9\n++ export GWD_OPT=3\n++ GWD_OPT=3\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.T.\n++ DO_GSL_DRAG_LS_BL=.T.\n++ export DO_GSL_DRAG_SS=.T.\n++ DO_GSL_DRAG_SS=.T.\n++ export DO_GSL_DRAG_TOFD=.T.\n++ DO_GSL_DRAG_TOFD=.T.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_rap_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_hrrr | - jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_hrrr | - jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_hrrr \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_hrrr\n++ echo RUN \'|\' fv3_ccpp_hrrr \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- jet.intel\'\n++ echo RUN \'|\' fv3_ccpp_hrrr \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_hrrr \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_hrrr \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_hrrr ]]\n+ [[ false == true ]]\n+ [[ - jet.intel != \'\' ]]\n+ [[ - jet.intel == -* ]]\n+ [[ - jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 39\n+ TEST_NR=039\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_hrrr\n++ export \'TEST_DESCR=Compare FV3 CCPP HRRR results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP HRRR results with previous trunk version\'\n++ export CNTL_DIR=fv3_hrrr\n++ CNTL_DIR=fv3_hrrr\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_HRRR\n++ CCPP_SUITE=FV3_HRRR\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export DO_MYNNSFCLAY=.T.\n++ DO_MYNNSFCLAY=.T.\n++ export IMFSHALCNV=-1\n++ IMFSHALCNV=-1\n++ export IMFDEEPCNV=-1\n++ IMFDEEPCNV=-1\n++ export LSM=3\n++ LSM=3\n++ export LSOIL_LSM=9\n++ LSOIL_LSM=9\n++ export KICE=9\n++ KICE=9\n++ export GWD_OPT=3\n++ GWD_OPT=3\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.T.\n++ DO_GSL_DRAG_LS_BL=.T.\n++ export DO_GSL_DRAG_SS=.T.\n++ DO_GSL_DRAG_SS=.T.\n++ export DO_GSL_DRAG_TOFD=.T.\n++ DO_GSL_DRAG_TOFD=.T.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_hrrr_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_thompson | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_thompson | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_thompson | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_thompson | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_thompson\n++ echo RUN \'|\' fv3_ccpp_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ cut \'-d|\' -f4\n++ echo RUN \'|\' fv3_ccpp_thompson \'|\' \'|\' fv3 \'|\'\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_thompson ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 40\n+ TEST_NR=040\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_thompson\n++ export \'TEST_DESCR=Compare FV3 CCPP Thompson MP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Thompson MP results with previous trunk version\'\n++ export CNTL_DIR=fv3_thompson\n++ CNTL_DIR=fv3_thompson\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_thompson\n++ CCPP_SUITE=FV3_GFS_v16_thompson\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export IAER=5111\n++ IAER=5111\n++ export ICLIQ_SW=2\n++ ICLIQ_SW=2\n++ export IOVR=3\n++ IOVR=3\n++ export LHEATSTRG=.T.\n++ LHEATSTRG=.T.\n++ export DO_TOFD=.T.\n++ DO_TOFD=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_thompson_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_thompson_no_aero | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_thompson_no_aero\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_thompson_no_aero ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 41\n+ TEST_NR=041\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_thompson_no_aero\n++ export \'TEST_DESCR=Compare FV3 CCPP Thompson MP no aerosol results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Thompson MP no aerosol results with previous trunk version\'\n++ export CNTL_DIR=fv3_thompson_no_aero\n++ CNTL_DIR=fv3_thompson_no_aero\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export NSRADAR_RESET=3600.0\n++ NSRADAR_RESET=3600.0\n++ export LTAEROSOL=.F.\n++ LTAEROSOL=.F.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_thompson\n++ CCPP_SUITE=FV3_GFS_v16_thompson\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export IAER=5111\n++ IAER=5111\n++ export ICLIQ_SW=2\n++ ICLIQ_SW=2\n++ export IOVR=3\n++ IOVR=3\n++ export LHEATSTRG=.T.\n++ LHEATSTRG=.T.\n++ export DO_TOFD=.T.\n++ DO_TOFD=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_thompson_no_aero_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\'# This test crashes with NaNs on jet.intel\'\n+ [[ 42 == 0 ]]\n+ [[ # This test crashes with NaNs on jet.intel == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_rrfs_v1beta\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- jet.intel\'\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta \'|\' - jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_rrfs_v1beta ]]\n+ [[ false == true ]]\n+ [[ - jet.intel != \'\' ]]\n+ [[ - jet.intel == -* ]]\n+ [[ - jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 42\n+ TEST_NR=042\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_rrfs_v1beta\n++ export \'TEST_DESCR=Compare FV3 CCPP RRFS_v1beta results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP RRFS_v1beta results with previous trunk version\'\n++ export CNTL_DIR=fv3_rrfs_v1beta\n++ CNTL_DIR=fv3_rrfs_v1beta\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_RRFS_v1beta\n++ CCPP_SUITE=FV3_RRFS_v1beta\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export IMFSHALCNV=-1\n++ IMFSHALCNV=-1\n++ export IMFDEEPCNV=-1\n++ IMFDEEPCNV=-1\n++ export LSM=2\n++ LSM=2\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export DO_MYNNSFCLAY=.T.\n++ DO_MYNNSFCLAY=.T.\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_rrfs_v1beta_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_8 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_9\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_V15P2,FV3_GFS_V16,FV3_GFS_V15P2_RRTMGP,FV3_GFS_V16_RRTMGP =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_V15P2,FV3_GFS_V16,FV3_GFS_V15P2_RRTMGP,FV3_GFS_V16_RRTMGP =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_V15P2,FV3_GFS_V16,FV3_GFS_V15P2_RRTMGP,FV3_GFS_V16_RRTMGP =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0\'\n+ [[ 111 == 0 ]]\n+ [[ # fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2 \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v15p2\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2 \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- cheyenne.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2 \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2 \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2 \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v15p2 ]]\n+ [[ false == true ]]\n+ [[ - cheyenne.intel != \'\' ]]\n+ [[ - cheyenne.intel == -* ]]\n+ [[ - cheyenne.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 43\n+ TEST_NR=043\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v15p2\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFS v15.2 results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFS v15.2 results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v15p2\n++ CNTL_DIR=fv3_gfs_v15p2\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export FV3_RUN=ccpp_gfs_v15_run.IN\n++ FV3_RUN=ccpp_gfs_v15_run.IN\n++ export CCPP_SUITE=FV3_GFS_v15p2\n++ CCPP_SUITE=FV3_GFS_v15p2\n++ export INPUT_NML=ccpp_v15p2_c96.nml.IN\n++ INPUT_NML=ccpp_v15p2_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v15p2_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16 | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16 | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16 | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16\n++ echo RUN \'|\' fv3_ccpp_gfs_v16 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16 ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 44\n+ TEST_NR=044\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFS v16 results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFS v16 results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16\n++ CNTL_DIR=fv3_gfs_v16\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export FHMAX=48\n++ FHMAX=48\n++ export RESTART_INTERVAL=24\n++ RESTART_INTERVAL=24\n++ export NSTF_NAME=2,1,0,0,0\n++ NSTF_NAME=2,1,0,0,0\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16\n++ CCPP_SUITE=FV3_GFS_v16\n++ export INPUT_NML=ccpp_v16_c96.nml.IN\n++ INPUT_NML=ccpp_v16_c96.nml.IN\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16\'\n+ [[ 196 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_restart \'|\' \'|\' \'|\' fv3_ccpp_gfs_v16\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_restart\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_restart \'|\' \'|\' \'|\' fv3_ccpp_gfs_v16\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_restart \'|\' \'|\' \'|\' fv3_ccpp_gfs_v16\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_restart \'|\' \'|\' \'|\' fv3_ccpp_gfs_v16\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=fv3_ccpp_gfs_v16\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_restart \'|\' \'|\' \'|\' fv3_ccpp_gfs_v16\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_restart ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 45\n+ TEST_NR=045\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_restart\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFS v16 results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFS v16 results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16\n++ CNTL_DIR=fv3_gfs_v16\n++ export \'LIST_FILES=phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export FHMAX=48\n++ FHMAX=48\n++ export RESTART_INTERVAL=24\n++ RESTART_INTERVAL=24\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export NGGPS_IC=.F.\n++ NGGPS_IC=.F.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MAKE_NH=.F.\n++ MAKE_NH=.F.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n++ export NSTF_NAME=2,0,0,0,0\n++ NSTF_NAME=2,0,0,0,0\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16\n++ CCPP_SUITE=FV3_GFS_v16\n++ export INPUT_NML=ccpp_v16_c96.nml.IN\n++ INPUT_NML=ccpp_v16_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_restart_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ fv3_ccpp_gfs_v16 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_9 == complete and fv3_ccpp_gfs_v16_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_stochy | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_stochy\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_stochy \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_stochy ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 46\n+ TEST_NR=046\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_stochy\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFS v16 stochastic results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFS v16 stochastic results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16_stochy\n++ CNTL_DIR=fv3_gfs_v16_stochy\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=600\n++ export FHMAX=12\n++ FHMAX=12\n++ export NSTF_NAME=2,1,0,0,0\n++ NSTF_NAME=2,1,0,0,0\n++ export DO_SPPT=.T.\n++ DO_SPPT=.T.\n++ export DO_SHUM=.T.\n++ DO_SHUM=.T.\n++ export DO_SKEB=.T.\n++ DO_SKEB=.T.\n++ export SKEB=0.3\n++ SKEB=0.3\n++ export SHUM=0.003\n++ SHUM=0.003\n++ export SPPT=0.2\n++ SPPT=0.2\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16\n++ CCPP_SUITE=FV3_GFS_v16\n++ export INPUT_NML=ccpp_v16_c96.nml.IN\n++ INPUT_NML=ccpp_v16_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_stochy_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v15p2_RRTMGP\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- cheyenne.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v15p2_RRTMGP ]]\n+ [[ false == true ]]\n+ [[ - cheyenne.intel != \'\' ]]\n+ [[ - cheyenne.intel == -* ]]\n+ [[ - cheyenne.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 47\n+ TEST_NR=047\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP\n++ export \'TEST_DESCR=Compare FV3 CCPP GFS v15.2 w/ RRTMGP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFS v15.2 w/ RRTMGP results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v15p2_RRTMGP\n++ CNTL_DIR=fv3_gfs_v15p2_RRTMGP\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export DO_RRTMGP=.T.\n++ DO_RRTMGP=.T.\n++ export FV3_RUN=ccpp_gfs_v15_run.IN\n++ FV3_RUN=ccpp_gfs_v15_run.IN\n++ export CCPP_SUITE=FV3_GFS_v15p2_RRTMGP\n++ CCPP_SUITE=FV3_GFS_v15p2_RRTMGP\n++ export INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN\n++ INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v15p2_RRTMGP_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_RRTMGP\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_RRTMGP ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 48\n+ TEST_NR=048\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_RRTMGP\n++ export \'TEST_DESCR=Compare FV3 CCPP GFS v16 w/ RRTMGP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GFS v16 w/ RRTMGP results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16_RRTMGP\n++ CNTL_DIR=fv3_gfs_v16_RRTMGP\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export DO_RRTMGP=.T.\n++ DO_RRTMGP=.T.\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN\n++ INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_RRTMGP_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_c192L127 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_RRTMGP_c192L127\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_c192L127 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_c192L127 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_c192L127 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_c192L127 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 49\n+ TEST_NR=049\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127\n++ export \'TEST_DESCR=Compare FV3 c192L217 CCPP GFS v16 w/ RRTMGP results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 c192L217 CCPP GFS v16 w/ RRTMGP results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16_RRTMGP_c192L127\n++ CNTL_DIR=fv3_gfs_v16_RRTMGP_c192L127\n++ export \'LIST_FILES=phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export DO_RRTMGP=.T.\n++ DO_RRTMGP=.T.\n++ export TASKS=150\n++ TASKS=150\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export NPZ=127\n++ NPZ=127\n++ export NPZP=128\n++ NPZP=128\n++ export SYEAR=2019\n++ SYEAR=2019\n++ export SMONTH=01\n++ SMONTH=01\n++ export SDAY=20\n++ SDAY=20\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export FHMAX=12\n++ FHMAX=12\n++ export WLCLK=30\n++ WLCLK=30\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export FV3_RUN=ccpp_gfs_v16_run_c192L127.IN\n++ FV3_RUN=ccpp_gfs_v16_run_c192L127.IN\n++ export CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ export INPUT_NML=ccpp_v16_c192L127_rrtmgp.nml.IN\n++ INPUT_NML=ccpp_v16_c192L127_rrtmgp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_9 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v16_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_v16_csawmg\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v16_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v16_csawmg \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_10\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_v16_csawmg\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_V16_CSAWMG =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_V16_CSAWMG =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_V16_CSAWMG =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests\'\n+ [[ 90 == 0 ]]\n+ [[ # fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmg | - cheyenne.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmg \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfsv16_csawmg\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmg \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- cheyenne.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmg \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmg \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmg \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfsv16_csawmg ]]\n+ [[ false == true ]]\n+ [[ - cheyenne.intel != \'\' ]]\n+ [[ - cheyenne.intel == -* ]]\n+ [[ - cheyenne.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 50\n+ TEST_NR=050\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfsv16_csawmg\n++ export \'TEST_DESCR=Compare FV3 CCPP v16_csawmg results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP v16_csawmg results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfsv16_csawmg\n++ CNTL_DIR=fv3_gfsv16_csawmg\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=600\n++ export INPUT_NML=ccpp_gfsv16_csawmg.nml.IN\n++ INPUT_NML=ccpp_gfsv16_csawmg.nml.IN\n++ export FV3_RUN=ccpp_gfsv16_csawmg_run.IN\n++ FV3_RUN=ccpp_gfsv16_csawmg_run.IN\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IAER=1111\n++ IAER=1111\n++ export CCPP_SUITE=FV3_GFS_v16_csawmg\n++ CCPP_SUITE=FV3_GFS_v16_csawmg\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfsv16_csawmg_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_10 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmgt \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfsv16_csawmgt\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmgt \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- cheyenne.intel\'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmgt \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmgt \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_csawmgt \'|\' - cheyenne.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfsv16_csawmgt ]]\n+ [[ false == true ]]\n+ [[ - cheyenne.intel != \'\' ]]\n+ [[ - cheyenne.intel == -* ]]\n+ [[ - cheyenne.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 51\n+ TEST_NR=051\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfsv16_csawmgt\n++ export \'TEST_DESCR=Compare FV3 CCPP v16_csawmgt results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP v16_csawmgt results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfsv16_csawmgt\n++ CNTL_DIR=fv3_gfsv16_csawmgt\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=600\n++ export INPUT_NML=ccpp_gfsv16_csawmg.nml.IN\n++ INPUT_NML=ccpp_gfsv16_csawmg.nml.IN\n++ export FV3_RUN=ccpp_gfsv16_csawmg_run.IN\n++ FV3_RUN=ccpp_gfsv16_csawmg_run.IN\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IAER=111\n++ IAER=111\n++ export CCPP_SUITE=FV3_GFS_v16_csawmg\n++ CCPP_SUITE=FV3_GFS_v16_csawmg\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfsv16_csawmgt_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_10 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_11\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP,FV3_GFS_V16_FLAKE =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP,FV3_GFS_V16_FLAKE =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_GFDLMP,FV3_GFS_2017_GFDLMP_NOAHMP,FV3_GFS_V16_FLAKE =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gocart_clm | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gocart_clm | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gocart_clm | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gocart_clm | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gocart_clm \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gocart_clm\n++ echo RUN \'|\' fv3_ccpp_gocart_clm \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gocart_clm \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gocart_clm \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gocart_clm \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gocart_clm ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 52\n+ TEST_NR=052\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gocart_clm\n++ export \'TEST_DESCR=Compare FV3 CCPP gocart_clm results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP gocart_clm results with previous trunk version\'\n++ export CNTL_DIR=fv3_gocart_clm\n++ CNTL_DIR=fv3_gocart_clm\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.nemsio phyf024.nemsio dynf000.nemsio dynf024.nemsio RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export \'OUTPUT_GRID=\'\\\'\'gaussian_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'gaussian_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'nemsio\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'nemsio\'\\\'\'\'\n++ export WRITE_NEMSIOFLIP=.true.\n++ WRITE_NEMSIOFLIP=.true.\n++ export WRITE_FSYNCFLAG=.true.\n++ WRITE_FSYNCFLAG=.true.\n++ export IAER=1111\n++ IAER=1111\n++ export HYBEDMF=.true.\n++ HYBEDMF=.true.\n++ export SATMEDMF=.false.\n++ SATMEDMF=.false.\n++ export FV3_RUN=ccpp_gocart.IN\n++ FV3_RUN=ccpp_gocart.IN\n++ export CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ CCPP_SUITE=FV3_GFS_2017_gfdlmp\n++ export INPUT_NML=ccpp.gocart.nml.IN\n++ INPUT_NML=ccpp.gocart.nml.IN\n++ [[ hera.intel = cheyenne.* ]]\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gocart_clm_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_11 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_flake | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_flake | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_flake | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_flake | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_flake\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_flake \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_flake ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 53\n+ TEST_NR=053\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_flake\n++ export \'TEST_DESCR=Compare FV3 32bit CCPP GFS v16 flake results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 32bit CCPP GFS v16 flake results with previous trunk version\'\n++ export CNTL_DIR=fv3_gfs_v16_flake\n++ CNTL_DIR=fv3_gfs_v16_flake\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ DT_ATMOS=1200\n++ export FV3_RUN=ccpp_gfs_v16_flake_run.IN\n++ FV3_RUN=ccpp_gfs_v16_flake_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_flake\n++ CCPP_SUITE=FV3_GFS_v16_flake\n++ export INPUT_NML=ccpp_v16_flake_c96.nml.IN\n++ INPUT_NML=ccpp_v16_flake_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_flake_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_11 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_12\'\n+ echo \' label build_options \'\\\'\'SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 =~ WW3=Y ]]\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_HAFS_v0_hwrf_thompson\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_HAFS_v0_hwrf_thompson ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 54\n+ TEST_NR=054\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson\n++ export \'TEST_DESCR=Compare HAFS 32bit CCPP HWRF suite results with previous trunk version\'\n++ TEST_DESCR=\'Compare HAFS 32bit CCPP HWRF suite results with previous trunk version\'\n++ export CNTL_DIR=HAFS_v0_HWRF_thompson\n++ CNTL_DIR=HAFS_v0_HWRF_thompson\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n+++ expr 150 / 40 + 1\n++ export NODES=4\n++ NODES=4\n++ DT_ATMOS=600\n++ export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN\n++ FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN\n++ export CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN\n++ INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.F.\n++ LTAEROSOL=.F.\n++ export NWAT=6\n++ NWAT=6\n++ export EFFR_IN=.T.\n++ EFFR_IN=.T.\n++ export HURR_PBL=.T.\n++ HURR_PBL=.T.\n++ export MONINQFAC=-1.0\n++ MONINQFAC=-1.0\n++ export ICLOUD=3\n++ ICLOUD=3\n++ export IOVR=4\n++ IOVR=4\n++ export LSM=4\n++ LSM=4\n++ export SFC_Z0_TYPE=4\n++ SFC_Z0_TYPE=4\n++ export HWRF_SAMFDEEP=.T.\n++ HWRF_SAMFDEEP=.T.\n++ export HWRF_SAMFSHAL=.T.\n++ HWRF_SAMFSHAL=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_HAFS_v0_hwrf_thompson_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_12 == complete\'\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_HAFS_v0_hwrf | | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_esg_HAFS_v0_hwrf_thompson\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 55\n+ TEST_NR=055\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson\n++ export \'TEST_DESCR=Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ TEST_DESCR=\'Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ export CNTL_DIR=ESG_HAFS_v0_HWRF_thompson\n++ CNTL_DIR=ESG_HAFS_v0_HWRF_thompson\n++ export \'LIST_FILES=atmos_4xdaily.nc phyf000.nc phyf012.nc dynf000.nc dynf012.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_tracer.res.tile1.nc RESTART/sfc_data.nc RESTART/phy_data.nc\'\n++ LIST_FILES=\'atmos_4xdaily.nc phyf000.nc phyf012.nc dynf000.nc dynf012.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_tracer.res.tile1.nc RESTART/sfc_data.nc RESTART/phy_data.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=80\n++ TASKS=80\n+++ expr 80 / 40 + 1\n++ export NODES=3\n++ NODES=3\n++ export FHMAX=12\n++ FHMAX=12\n++ export FDIAG=3\n++ FDIAG=3\n++ DT_ATMOS=300\n++ export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN\n++ FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN\n++ export CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN\n++ INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN\n++ export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN\n++ MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export NWAT=6\n++ NWAT=6\n++ export EFFR_IN=.T.\n++ EFFR_IN=.T.\n++ export HURR_PBL=.T.\n++ HURR_PBL=.T.\n++ export MONINQFAC=-1.0\n++ MONINQFAC=-1.0\n++ export ICLOUD=3\n++ ICLOUD=3\n++ export IOVR=4\n++ IOVR=4\n++ export LSM=4\n++ LSM=4\n++ export SFC_Z0_TYPE=4\n++ SFC_Z0_TYPE=4\n++ export HWRF_SAMFDEEP=.T.\n++ HWRF_SAMFDEEP=.T.\n++ export HWRF_SAMFSHAL=.T.\n++ HWRF_SAMFSHAL=.T.\n+ NODES=2\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_12 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfsv16_ugwpv1\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1 \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfsv16_ugwpv1 ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 56\n+ TEST_NR=056\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfsv16_ugwpv1\n++ export \'TEST_DESCR=Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version\'\n++ TEST_DESCR=\'Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version\'\n++ export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1\n++ CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1\n++ export \'LIST_FILES=phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export SYEAR=2019\n++ SYEAR=2019\n++ export SMONTH=07\n++ SMONTH=07\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ DT_ATMOS=600\n++ export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ export CCPP_LIB_DIR=ccpp/lib\n++ CCPP_LIB_DIR=ccpp/lib\n++ export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfsv16_ugwpv1_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_12 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_warmstart \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfsv16_ugwpv1_warmstart\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_warmstart \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_warmstart \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_warmstart \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_warmstart \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfsv16_ugwpv1_warmstart ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 57\n+ TEST_NR=057\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart\n++ export \'TEST_DESCR=Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version\'\n++ TEST_DESCR=\'Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version\'\n++ export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_warmstart\n++ CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_warmstart\n++ export \'LIST_FILES=phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export SYEAR=2019\n++ SYEAR=2019\n++ export SMONTH=07\n++ SMONTH=07\n++ export SDAY=02\n++ SDAY=02\n++ export SHOUR=00\n++ SHOUR=00\n++ DT_ATMOS=600\n++ export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ export CCPP_LIB_DIR=ccpp/lib\n++ CCPP_LIB_DIR=ccpp/lib\n++ export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ export WLCLK=30\n++ WLCLK=30\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export EXTERNAL_IC=.F.\n++ EXTERNAL_IC=.F.\n++ export MOUNTAIN=.T.\n++ MOUNTAIN=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfsv16_ugwpv1_warmstart_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_12 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# DEBUG tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # DEBUG tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode)\'\n+ [[ 115 == 0 ]]\n+ [[ # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3\'\n+ [[ 168 == 0 ]]\n+ [[ # Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | == \\#* ]]\n+ [[ COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' DEBUG=Y \'|\' - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=DEBUG=Y\n++ echo COMPILE \'|\' DEBUG=Y \'|\' - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3\'\n++ echo COMPILE \'|\' DEBUG=Y \'|\' - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 != \'\' ]]\n+ [[ - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 == -* ]]\n+ [[ - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_13\'\n+ echo \' label build_options \'\\\'\'DEBUG=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ DEBUG=Y =~ WW3=Y ]]\n+ [[ DEBUG=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ DEBUG=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | == \\#* ]]\n+ [[ COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP \'|\' + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP\'\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP \'|\' + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'+ gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3\'\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP \'|\' + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 != \'\' ]]\n+ [[ + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 == -* ]]\n+ [[ + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 == +* ]]\n+ [[ + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 =~ hera.intel ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v15p2_debug\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v15p2_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 58\n+ TEST_NR=058\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v15p2_debug\n++ export \'TEST_DESCR=Run FV3 32bit CCPP GFS v15.2 in DEBUG mode\'\n++ TEST_DESCR=\'Run FV3 32bit CCPP GFS v15.2 in DEBUG mode\'\n++ export CNTL_DIR=fv3_gfs_v15p2_debug\n++ CNTL_DIR=fv3_gfs_v15p2_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=06\n++ FHMAX=06\n++ DT_ATMOS=1200\n++ export FV3_RUN=ccpp_gfs_v15_run.IN\n++ FV3_RUN=ccpp_gfs_v15_run.IN\n++ export CCPP_SUITE=FV3_GFS_v15p2\n++ CCPP_SUITE=FV3_GFS_v15p2\n++ export INPUT_NML=ccpp_v15p2_c96.nml.IN\n++ INPUT_NML=ccpp_v15p2_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v15p2_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_13 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_debug | | fv3 | == RUN* ]]\n++ cut \'-d|\' -f2\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_debug \'|\' \'|\' fv3 \'|\'\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_debug\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 59\n+ TEST_NR=059\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_debug\n++ export \'TEST_DESCR=Run FV3 32bit CCPP GFS v16 in DEBUG mode\'\n++ TEST_DESCR=\'Run FV3 32bit CCPP GFS v16 in DEBUG mode\'\n++ export CNTL_DIR=fv3_gfs_v16_debug\n++ CNTL_DIR=fv3_gfs_v16_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=06\n++ FHMAX=06\n++ DT_ATMOS=1200\n++ export NSTF_NAME=2,1,0,0,0\n++ NSTF_NAME=2,1,0,0,0\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16\n++ CCPP_SUITE=FV3_GFS_v16\n++ export INPUT_NML=ccpp_v16_c96.nml.IN\n++ INPUT_NML=ccpp_v16_c96.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_13 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v15p2_RRTMGP_debug\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v15p2_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 60\n+ TEST_NR=060\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug\n++ export \'TEST_DESCR=Run FV3 CCPP GFS v15.2 w/ RRTMGP in DEBUG mode\'\n++ TEST_DESCR=\'Run FV3 CCPP GFS v15.2 w/ RRTMGP in DEBUG mode\'\n++ export CNTL_DIR=fv3_gfs_v15p2_RRTMGP_debug\n++ CNTL_DIR=fv3_gfs_v15p2_RRTMGP_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=06\n++ FHMAX=06\n++ DT_ATMOS=1200\n++ export DO_RRTMGP=.T.\n++ DO_RRTMGP=.T.\n++ export FV3_RUN=ccpp_gfs_v15_run.IN\n++ FV3_RUN=ccpp_gfs_v15_run.IN\n++ export CCPP_SUITE=FV3_GFS_v15p2_RRTMGP\n++ CCPP_SUITE=FV3_GFS_v15p2_RRTMGP\n++ export INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN\n++ INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_13 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfs_v16_RRTMGP_debug\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfs_v16_RRTMGP_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfs_v16_RRTMGP_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 61\n+ TEST_NR=061\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug\n++ export \'TEST_DESCR=Run FV3 CCPP GFS v16 w/ RRTMGP in DEBUG mode\'\n++ TEST_DESCR=\'Run FV3 CCPP GFS v16 w/ RRTMGP in DEBUG mode\'\n++ export CNTL_DIR=fv3_gfs_v16_RRTMGP_debug\n++ CNTL_DIR=fv3_gfs_v16_RRTMGP_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=06\n++ FHMAX=06\n++ DT_ATMOS=1200\n++ export DO_RRTMGP=.T.\n++ DO_RRTMGP=.T.\n++ export FV3_RUN=ccpp_gfs_v16_run.IN\n++ FV3_RUN=ccpp_gfs_v16_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ CCPP_SUITE=FV3_GFS_v16_RRTMGP\n++ export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN\n++ INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfs_v16_RRTMGP_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_13 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_14\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN,FV3_GFS_2017,FV3_GFS_2017_STRETCHED,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RRFS_V1BETA 32BIT=Y DEBUG=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN,FV3_GFS_2017,FV3_GFS_2017_STRETCHED,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RRFS_V1BETA 32BIT=Y DEBUG=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_V15_THOMPSON_MYNN,FV3_GFS_2017,FV3_GFS_2017_STRETCHED,FV3_GSD_V0,FV3_GFS_V16_THOMPSON,FV3_RRFS_V1BETA 32BIT=Y DEBUG=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_regional_control_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_regional_control_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_regional_control_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_regional_control_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_regional_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_regional_control_debug\n++ echo RUN \'|\' fv3_ccpp_regional_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_regional_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_regional_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_regional_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_regional_control_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 62\n+ TEST_NR=062\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_regional_control_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP regional control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP regional control results with previous trunk version\'\n++ export CNTL_DIR=fv3_regional_control_debug\n++ CNTL_DIR=fv3_regional_control_debug\n++ export \'LIST_FILES= atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc RESTART/fv_core.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc\'\n++ LIST_FILES=\' atmos_4xdaily.nc fv3_history2d.nc fv3_history.nc RESTART/fv_core.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=40\n++ TASKS=40\n++ export FHMAX=01\n++ FHMAX=01\n++ export FV3_RUN=ccpp_regional_run.IN\n++ FV3_RUN=ccpp_regional_run.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export H2O_PHYS=.T.\n++ H2O_PHYS=.T.\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ CCPP_SUITE=FV3_GFS_v15_thompson_mynn\n++ export INPUT_NML=ccpp_regional.nml.IN\n++ INPUT_NML=ccpp_regional.nml.IN\n++ export FDIAG=1\n++ FDIAG=1\n++ export INPES=5\n++ INPES=5\n++ export JNPES=8\n++ JNPES=8\n++ export WRITE_RESTART_WITH_BCS=.true.\n++ WRITE_RESTART_WITH_BCS=.true.\n+ NODES=1\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_regional_control_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_control_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_control_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_control_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_control_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_control_debug\n++ echo RUN \'|\' fv3_ccpp_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_control_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_control_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 63\n+ TEST_NR=063\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_control_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_control_debug\n++ CNTL_DIR=fv3_control_debug\n++ export \'LIST_FILES=phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc\'\n++ LIST_FILES=\'phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=06\n++ FHMAX=06\n++ export FV3_RUN=ccpp_control_run.IN\n++ FV3_RUN=ccpp_control_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017\n++ CCPP_SUITE=FV3_GFS_2017\n++ export INPUT_NML=ccpp_control.nml.IN\n++ INPUT_NML=ccpp_control.nml.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_control_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_stretched_nest_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_stretched_nest_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_stretched_nest_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_stretched_nest_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_stretched_nest_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_stretched_nest_debug\n++ echo RUN \'|\' fv3_ccpp_stretched_nest_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_stretched_nest_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_stretched_nest_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_stretched_nest_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_stretched_nest_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 64\n+ TEST_NR=064\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_stretched_nest_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP control results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP control results with previous trunk version\'\n++ export CNTL_DIR=fv3_stretched_nest_debug\n++ CNTL_DIR=fv3_stretched_nest_debug\n++ export \'LIST_FILES=fv3_history2d.nest02.tile7.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history.nest02.tile7.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc\'\n++ LIST_FILES=\'fv3_history2d.nest02.tile7.nc fv3_history2d.tile1.nc fv3_history2d.tile2.nc fv3_history2d.tile3.nc fv3_history2d.tile4.nc fv3_history2d.tile5.nc fv3_history2d.tile6.nc fv3_history.nest02.tile7.nc fv3_history.tile1.nc fv3_history.tile2.nc fv3_history.tile3.nc fv3_history.tile4.nc fv3_history.tile5.nc fv3_history.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ INPES=2\n++ JNPES=4\n++ TPN=12\n++ TASKS=96\n++ export INPES_NEST=6\n++ INPES_NEST=6\n++ export JNPES_NEST=8\n++ JNPES_NEST=8\n++ export MAKE_NH_NEST=.F.\n++ MAKE_NH_NEST=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export FDIAG=3\n++ FDIAG=3\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export SYEAR=2018\n++ SYEAR=2018\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=15\n++ SDAY=15\n++ export SHOUR=00\n++ SHOUR=00\n++ export FHMAX=03\n++ FHMAX=03\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ QUILTING=.false.\n++ export WLCLK=30\n++ WLCLK=30\n++ export INPUT_NML=ccpp_stretched-nest-input.nml.IN\n++ INPUT_NML=ccpp_stretched-nest-input.nml.IN\n++ export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN\n++ INPUT_NEST02_NML=ccpp_input_nest02.nml.IN\n++ export FV3_RUN=ccpp_stretched_run.IN\n++ FV3_RUN=ccpp_stretched_run.IN\n++ export CCPP_SUITE=FV3_GFS_2017_stretched\n++ CCPP_SUITE=FV3_GFS_2017_stretched\n+ NODES=8\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_stretched_nest_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gsd_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gsd_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gsd_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gsd_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gsd_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gsd_debug\n++ echo RUN \'|\' fv3_ccpp_gsd_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gsd_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gsd_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gsd_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gsd_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 65\n+ TEST_NR=065\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gsd_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP GSD DEBUG results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GSD DEBUG results with previous trunk version\'\n++ export CNTL_DIR=fv3_gsd_debug\n++ CNTL_DIR=fv3_gsd_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=3\n++ FHMAX=3\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GSD_v0\n++ CCPP_SUITE=FV3_GSD_v0\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export IMFSHALCNV=3\n++ IMFSHALCNV=3\n++ export IMFDEEPCNV=3\n++ IMFDEEPCNV=3\n++ export LSM=3\n++ LSM=3\n++ export LSOIL_LSM=9\n++ LSOIL_LSM=9\n++ export KICE=9\n++ KICE=9\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gsd_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gsd_diag3d_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gsd_diag3d_debug\n++ echo RUN \'|\' fv3_ccpp_gsd_diag3d_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gsd_diag3d_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gsd_diag3d_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gsd_diag3d_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gsd_diag3d_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 66\n+ TEST_NR=066\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gsd_diag3d_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP GSD 3d tendencies debug results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP GSD 3d tendencies debug results with previous trunk version\'\n++ export CNTL_DIR=fv3_gsd_diag3d_debug\n++ CNTL_DIR=fv3_gsd_diag3d_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=3\n++ FHMAX=3\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG3D=.T.\n++ LDIAG3D=.T.\n++ export QDIAG3D=.T.\n++ QDIAG3D=.T.\n++ export MAX_OUTPUT_FIELDS=400\n++ MAX_OUTPUT_FIELDS=400\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GSD_v0\n++ CCPP_SUITE=FV3_GSD_v0\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export IMFSHALCNV=3\n++ IMFSHALCNV=3\n++ export IMFDEEPCNV=3\n++ IMFDEEPCNV=3\n++ export LSM=3\n++ LSM=3\n++ export LSOIL_LSM=9\n++ LSOIL_LSM=9\n++ export KICE=9\n++ KICE=9\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gsd_diag3d_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_thompson_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_thompson_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_thompson_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_thompson_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_thompson_debug\n++ echo RUN \'|\' fv3_ccpp_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_thompson_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 67\n+ TEST_NR=067\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_thompson_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP Thompson MP debug results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Thompson MP debug results with previous trunk version\'\n++ export CNTL_DIR=fv3_thompson_debug\n++ CNTL_DIR=fv3_thompson_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=6\n++ FHMAX=6\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_thompson\n++ CCPP_SUITE=FV3_GFS_v16_thompson\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export IAER=5111\n++ IAER=5111\n++ export ICLIQ_SW=2\n++ ICLIQ_SW=2\n++ export IOVR=3\n++ IOVR=3\n++ export LHEATSTRG=.T.\n++ LHEATSTRG=.T.\n++ export DO_TOFD=.T.\n++ DO_TOFD=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_thompson_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_thompson_no_aero_debug\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_thompson_no_aero_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_thompson_no_aero_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 68\n+ TEST_NR=068\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_thompson_no_aero_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP Thompson MP without aerosols debug results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP Thompson MP without aerosols debug results with previous trunk version\'\n++ export CNTL_DIR=fv3_thompson_no_aero_debug\n++ CNTL_DIR=fv3_thompson_no_aero_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=6\n++ FHMAX=6\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export NSRADAR_RESET=3600.0\n++ NSRADAR_RESET=3600.0\n++ export LTAEROSOL=.F.\n++ LTAEROSOL=.F.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16_thompson\n++ CCPP_SUITE=FV3_GFS_v16_thompson\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export SATMEDMF=.T.\n++ SATMEDMF=.T.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export IAER=5111\n++ IAER=5111\n++ export ICLIQ_SW=2\n++ ICLIQ_SW=2\n++ export IOVR=3\n++ IOVR=3\n++ export LHEATSTRG=.T.\n++ LHEATSTRG=.T.\n++ export DO_TOFD=.T.\n++ DO_TOFD=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_thompson_no_aero_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_rrfs_v1beta_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_rrfs_v1beta_debug\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_rrfs_v1beta_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_rrfs_v1beta_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 69\n+ TEST_NR=069\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_rrfs_v1beta_debug\n++ export \'TEST_DESCR=Compare FV3 CCPP RRFS_v1beta DEBUG results with previous trunk version\'\n++ TEST_DESCR=\'Compare FV3 CCPP RRFS_v1beta DEBUG results with previous trunk version\'\n++ export CNTL_DIR=fv3_rrfs_v1beta_debug\n++ CNTL_DIR=fv3_rrfs_v1beta_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export FHMAX=3\n++ FHMAX=3\n++ export FDIAG=3\n++ FDIAG=3\n++ export DT_ATMOS=600\n++ DT_ATMOS=600\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export DNATS=0\n++ DNATS=0\n++ export DO_SAT_ADJ=.F.\n++ DO_SAT_ADJ=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export FV3_RUN=ccpp_gsd_run.IN\n++ FV3_RUN=ccpp_gsd_run.IN\n++ export CCPP_SUITE=FV3_RRFS_v1beta\n++ CCPP_SUITE=FV3_RRFS_v1beta\n++ export INPUT_NML=ccpp_gsd.nml.IN\n++ INPUT_NML=ccpp_gsd.nml.IN\n++ export HYBEDMF=.F.\n++ HYBEDMF=.F.\n++ export DO_MYNNEDMF=.T.\n++ DO_MYNNEDMF=.T.\n++ export IMFSHALCNV=-1\n++ IMFSHALCNV=-1\n++ export IMFDEEPCNV=-1\n++ IMFDEEPCNV=-1\n++ export LSM=2\n++ LSM=2\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export DO_MYNNSFCLAY=.T.\n++ DO_MYNNSFCLAY=.T.\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_rrfs_v1beta_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_14 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y\'\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo COMPILE \'|\' SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_15\'\n+ echo \' label build_options \'\\\'\'SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 DEBUG=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 DEBUG=Y =~ WW3=Y ]]\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 DEBUG=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=HAFS_V0_HWRF_THOMPSON,HAFS_V0_HWRF,FV3_GFS_V16B_UGWPV1 DEBUG=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_HAFS_v0_hwrf_thompson_debug\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 70\n+ TEST_NR=070\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug\n++ export \'TEST_DESCR=Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ TEST_DESCR=\'Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ export CNTL_DIR=HAFS_v0_HWRF_thompson_debug\n++ CNTL_DIR=HAFS_v0_HWRF_thompson_debug\n++ export \'LIST_FILES=atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'atmos_4xdaily.tile1.nc atmos_4xdaily.tile2.nc atmos_4xdaily.tile3.nc atmos_4xdaily.tile4.nc atmos_4xdaily.tile5.nc atmos_4xdaily.tile6.nc phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf003.tile1.nc phyf003.tile2.nc phyf003.tile3.nc phyf003.tile4.nc phyf003.tile5.nc phyf003.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf003.tile1.nc dynf003.tile2.nc dynf003.tile3.nc dynf003.tile4.nc dynf003.tile5.nc dynf003.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n+++ expr 150 / 40 + 1\n++ export NODES=4\n++ NODES=4\n++ export FHMAX=3\n++ FHMAX=3\n++ export FDIAG=3\n++ FDIAG=3\n++ DT_ATMOS=600\n++ export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN\n++ FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN\n++ export CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN\n++ INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.F.\n++ LTAEROSOL=.F.\n++ export NWAT=6\n++ NWAT=6\n++ export EFFR_IN=.T.\n++ EFFR_IN=.T.\n++ export HURR_PBL=.T.\n++ HURR_PBL=.T.\n++ export MONINQFAC=-1.0\n++ MONINQFAC=-1.0\n++ export ICLOUD=3\n++ ICLOUD=3\n++ export IOVR=4\n++ IOVR=4\n++ export LSM=4\n++ LSM=4\n++ export SFC_Z0_TYPE=4\n++ SFC_Z0_TYPE=4\n++ export HWRF_SAMFDEEP=.T.\n++ HWRF_SAMFDEEP=.T.\n++ export HWRF_SAMFSHAL=.T.\n++ HWRF_SAMFSHAL=.T.\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_15 == complete\'\n+ continue\n+ read -r line\n+ line=\'#RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ #RUN | fv3_ccpp_HAFS_v0_hwrf_debug | | fv3 | == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 71\n+ TEST_NR=071\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug\n++ export \'TEST_DESCR=Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ TEST_DESCR=\'Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version\'\n++ export CNTL_DIR=ESG_HAFS_v0_HWRF_thompson_debug\n++ CNTL_DIR=ESG_HAFS_v0_HWRF_thompson_debug\n++ export \'LIST_FILES=atmos_4xdaily.nc phyf000.nc phyf001.nc dynf000.nc dynf001.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_tracer.res.tile1.nc RESTART/sfc_data.nc RESTART/phy_data.nc\'\n++ LIST_FILES=\'atmos_4xdaily.nc phyf000.nc phyf001.nc dynf000.nc dynf001.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_tracer.res.tile1.nc RESTART/sfc_data.nc RESTART/phy_data.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export TASKS=80\n++ TASKS=80\n+++ expr 80 / 40 + 1\n++ export NODES=3\n++ NODES=3\n++ export FHMAX=1\n++ FHMAX=1\n++ export FDIAG=1\n++ FDIAG=1\n++ DT_ATMOS=300\n++ export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN\n++ FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN\n++ export CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ CCPP_SUITE=HAFS_v0_hwrf_thompson\n++ export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN\n++ INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN\n++ export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN\n++ MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN\n++ export OZ_PHYS_OLD=.F.\n++ OZ_PHYS_OLD=.F.\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export IMP_PHYSICS=8\n++ IMP_PHYSICS=8\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export NWAT=6\n++ NWAT=6\n++ export EFFR_IN=.T.\n++ EFFR_IN=.T.\n++ export HURR_PBL=.T.\n++ HURR_PBL=.T.\n++ export MONINQFAC=-1.0\n++ MONINQFAC=-1.0\n++ export ICLOUD=3\n++ ICLOUD=3\n++ export IOVR=4\n++ IOVR=4\n++ export LSM=4\n++ LSM=4\n++ export SFC_Z0_TYPE=4\n++ SFC_Z0_TYPE=4\n++ export HWRF_SAMFDEEP=.T.\n++ HWRF_SAMFDEEP=.T.\n++ export HWRF_SAMFSHAL=.T.\n++ HWRF_SAMFSHAL=.T.\n+ NODES=2\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_15 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | == \\#* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | == COMPILE* ]]\n+ [[ RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | == RUN* ]]\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=fv3_ccpp_gfsv16_ugwpv1_debug\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' fv3_ccpp_gfsv16_ugwpv1_debug \'|\' \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/fv3_ccpp_gfsv16_ugwpv1_debug ]]\n+ [[ false == true ]]\n+ [[ \'\' != \'\' ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 72\n+ TEST_NR=072\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug\n++ export \'TEST_DESCR=Compare fv3_ccpp_gfsv16_ugwpv1 DEBUG with previous trunk version\'\n++ TEST_DESCR=\'Compare fv3_ccpp_gfsv16_ugwpv1 DEBUG with previous trunk version\'\n++ export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_debug\n++ CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_debug\n++ export \'LIST_FILES=phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ LIST_FILES=\'phyf000.tile1.nc phyf000.tile2.nc phyf000.tile3.nc phyf000.tile4.nc phyf000.tile5.nc phyf000.tile6.nc phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf000.tile1.nc dynf000.tile2.nc dynf000.tile3.nc dynf000.tile4.nc dynf000.tile5.nc dynf000.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export SYEAR=2019\n++ SYEAR=2019\n++ export SMONTH=07\n++ SMONTH=07\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ DT_ATMOS=600\n++ export FHMAX=6\n++ FHMAX=6\n++ export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN\n++ export CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ CCPP_SUITE=FV3_GFS_v16b_ugwpv1\n++ export CCPP_LIB_DIR=ccpp/lib\n++ CCPP_LIB_DIR=ccpp/lib\n++ export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN\n++ export WLCLK=30\n++ WLCLK=30\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ NODES=4\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task fv3_ccpp_gfsv16_ugwpv1_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_15 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# CPLD tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # CPLD tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_16\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ WW3=Y ]]\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_control | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_control | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_control | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_control | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_control \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_control\n++ echo RUN \'|\' cpld_control \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_control \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_control \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_control \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_control ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 73\n+ TEST_NR=073\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_control\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100\'\n++ export CNTL_DIR=cpld_control\n++ CNTL_DIR=cpld_control\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_control_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control\'\n+ [[ 181 == 0 ]]\n+ [[ RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control == \\#* ]]\n+ [[ RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control == COMPILE* ]]\n+ [[ RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control == RUN* ]]\n++ echo RUN \'|\' cpld_restart \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart\n++ echo RUN \'|\' cpld_restart \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restart \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_control\n++ echo RUN \'|\' cpld_restart \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 74\n+ TEST_NR=074\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart\'\n++ export CNTL_DIR=cpld_control\n++ CNTL_DIR=cpld_control\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_control != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_control_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_controlfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_controlfrac\n++ echo RUN \'|\' cpld_controlfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_controlfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_controlfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_controlfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_controlfrac ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 75\n+ TEST_NR=075\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_controlfrac\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - frac grid\'\n++ export CNTL_DIR=cpld_controlfrac\n++ CNTL_DIR=cpld_controlfrac\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_controlfrac_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac\'\n+ [[ 185 == 0 ]]\n+ [[ RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac == \\#* ]]\n+ [[ RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac == COMPILE* ]]\n+ [[ RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac == RUN* ]]\n++ echo RUN \'|\' cpld_restartfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restartfrac\n++ echo RUN \'|\' cpld_restartfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restartfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restartfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_controlfrac\n++ echo RUN \'|\' cpld_restartfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restartfrac ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 76\n+ TEST_NR=076\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restartfrac\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart - frac grid\'\n++ export CNTL_DIR=cpld_controlfrac\n++ CNTL_DIR=cpld_controlfrac\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restartfrac_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_controlfrac != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_controlfrac_prod == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_2threads | - wcoss_cray jet.intel | |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_2threads | - wcoss_cray jet.intel | | == \\#* ]]\n+ [[ RUN | cpld_2threads | - wcoss_cray jet.intel | | == COMPILE* ]]\n+ [[ RUN | cpld_2threads | - wcoss_cray jet.intel | | == RUN* ]]\n++ echo RUN \'|\' cpld_2threads \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_2threads\n++ echo RUN \'|\' cpld_2threads \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_2threads \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_2threads \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_2threads \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_2threads ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 77\n+ TEST_NR=077\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_2threads\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - 2 threads\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - 2 threads\'\n++ export CNTL_DIR=cpld_control\n++ CNTL_DIR=cpld_control\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=4\n++ JNPES=4\n++ export THRD=2\n++ THRD=2\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 77\'\n++ med_petlist_bounds=\'0 77\'\n++ export \'atm_petlist_bounds=0 77\'\n++ atm_petlist_bounds=\'0 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_2threads_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_decomp | - wcoss_cray jet.intel | |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_decomp | - wcoss_cray jet.intel | | == \\#* ]]\n+ [[ RUN | cpld_decomp | - wcoss_cray jet.intel | | == COMPILE* ]]\n+ [[ RUN | cpld_decomp | - wcoss_cray jet.intel | | == RUN* ]]\n++ echo RUN \'|\' cpld_decomp \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_decomp\n++ cut \'-d|\' -f3\n++ echo RUN \'|\' cpld_decomp \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_decomp \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_decomp \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_decomp \'|\' - wcoss_cray jet.intel \'|\' \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_decomp ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 78\n+ TEST_NR=078\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_decomp\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - decomp\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - decomp\'\n++ export CNTL_DIR=cpld_control\n++ CNTL_DIR=cpld_control\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export INPES=6\n++ INPES=6\n++ export JNPES=4\n++ JNPES=4\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_decomp_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_satmedmf \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_satmedmf\n++ echo RUN \'|\' cpld_satmedmf \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_satmedmf \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_satmedmf \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_satmedmf \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_satmedmf ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 79\n+ TEST_NR=079\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_satmedmf\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - satmedmf\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - satmedmf\'\n++ export CNTL_DIR=cpld_satmedmf\n++ CNTL_DIR=cpld_satmedmf\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SATMEDMF=.true.\n++ SATMEDMF=.true.\n++ export HYBEDMF=.false.\n++ HYBEDMF=.false.\n++ export FIELD_TABLE=field_table_satmedmf\n++ FIELD_TABLE=field_table_satmedmf\n++ export SUITE_NAME=FV3_GFS_2017_satmedmf_coupled\n++ SUITE_NAME=FV3_GFS_2017_satmedmf_coupled\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_satmedmf_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_ca | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_ca \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_ca\n++ echo RUN \'|\' cpld_ca \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_ca \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_ca \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_ca \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_ca ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 80\n+ TEST_NR=080\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_ca\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 CA\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 CA\'\n++ export CNTL_DIR=cpld_ca\n++ CNTL_DIR=cpld_ca\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DO_CA=.T.\n++ DO_CA=.T.\n++ export CA_SGS=.T.\n++ CA_SGS=.T.\n++ export CA_GLOBAL=.T.\n++ CA_GLOBAL=.T.\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_ca_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'#12h/36h/48h restart tests\'\n+ [[ 26 == 0 ]]\n+ [[ #12h/36h/48h restart tests == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_control_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_control_c192\n++ echo RUN \'|\' cpld_control_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_control_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_control_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_control_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_control_c192 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 81\n+ TEST_NR=081\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_control_c192\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050\'\n++ export CNTL_DIR=cpld_control_c192\n++ CNTL_DIR=cpld_control_c192\n++ export \'LIST_FILES=phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ LIST_FILES=\'phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=2\n++ DAYS=2\n++ export FHMAX=48\n++ FHMAX=48\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export TASKS=288\n++ TASKS=288\n++ export TPN=40\n++ TPN=40\n++ export INPES=4\n++ INPES=4\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export \'med_petlist_bounds=0 191\'\n++ med_petlist_bounds=\'0 191\'\n++ export \'atm_petlist_bounds=0 203\'\n++ atm_petlist_bounds=\'0 203\'\n++ export \'ocn_petlist_bounds=204 263\'\n++ ocn_petlist_bounds=\'204 263\'\n++ export \'ice_petlist_bounds=264 287\'\n++ ice_petlist_bounds=\'264 287\'\n++ export ATMRES=C192\n++ ATMRES=C192\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export OCNRES=050\n++ OCNRES=050\n++ export ICERES=0.50\n++ ICERES=0.50\n++ export NX_GLB=720\n++ NX_GLB=720\n++ export NY_GLB=576\n++ NY_GLB=576\n++ export NPROC_ICE=24\n++ NPROC_ICE=24\n++ export CDMBWD=0.23,1.5,1.0,1.0\n++ CDMBWD=0.23,1.5,1.0,1.0\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export MOM_INPUT=MOM_input_template_050\n++ MOM_INPUT=MOM_input_template_050\n++ export MESHOCN_ICE=mesh.mx050.nc\n++ MESHOCN_ICE=mesh.mx050.nc\n++ export CICEGRID=grid_cice_NEMS_mx050.nc\n++ CICEGRID=grid_cice_NEMS_mx050.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_control_c192_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192\'\n+ [[ 186 == 0 ]]\n+ [[ RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 == \\#* ]]\n+ [[ RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 == COMPILE* ]]\n+ [[ RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 == RUN* ]]\n++ echo RUN \'|\' cpld_restart_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c192\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart_c192\n++ echo RUN \'|\' cpld_restart_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c192\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restart_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c192\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c192\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_control_c192\n++ echo RUN \'|\' cpld_restart_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c192\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart_c192 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 82\n+ TEST_NR=082\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart_c192\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart\'\n++ export CNTL_DIR=cpld_control_c192\n++ CNTL_DIR=cpld_control_c192\n++ export \'LIST_FILES=phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ LIST_FILES=\'phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=2\n++ DAYS=2\n++ export FHMAX=48\n++ FHMAX=48\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=36\n++ RESTART_N=36\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ export TASKS=288\n++ TASKS=288\n++ export TPN=40\n++ TPN=40\n++ export INPES=4\n++ INPES=4\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export \'med_petlist_bounds=0 191\'\n++ med_petlist_bounds=\'0 191\'\n++ export \'atm_petlist_bounds=0 203\'\n++ atm_petlist_bounds=\'0 203\'\n++ export \'ocn_petlist_bounds=204 263\'\n++ ocn_petlist_bounds=\'204 263\'\n++ export \'ice_petlist_bounds=264 287\'\n++ ice_petlist_bounds=\'264 287\'\n++ export ATMRES=C192\n++ ATMRES=C192\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export OCNRES=050\n++ OCNRES=050\n++ export ICERES=0.50\n++ ICERES=0.50\n++ export NX_GLB=720\n++ NX_GLB=720\n++ export NY_GLB=576\n++ NY_GLB=576\n++ export NPROC_ICE=24\n++ NPROC_ICE=24\n++ export CDMBWD=0.23,1.5,1.0,1.0\n++ CDMBWD=0.23,1.5,1.0,1.0\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export MOM_INPUT=MOM_input_template_050\n++ MOM_INPUT=MOM_input_template_050\n++ export MESHOCN_ICE=mesh.mx050.nc\n++ MESHOCN_ICE=mesh.mx050.nc\n++ export CICEGRID=grid_cice_NEMS_mx050.nc\n++ CICEGRID=grid_cice_NEMS_mx050.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_c192_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_control_c192 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_control_c192_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_controlfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_controlfrac_c192\n++ echo RUN \'|\' cpld_controlfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_controlfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_controlfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_controlfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_controlfrac_c192 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 83\n+ TEST_NR=083\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_controlfrac_c192\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - frac grid\'\n++ export CNTL_DIR=cpld_controlfrac_c192\n++ CNTL_DIR=cpld_controlfrac_c192\n++ export \'LIST_FILES=phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ LIST_FILES=\'phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=2\n++ DAYS=2\n++ export FHMAX=48\n++ FHMAX=48\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export TASKS=288\n++ TASKS=288\n++ export TPN=40\n++ TPN=40\n++ export INPES=4\n++ INPES=4\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export \'med_petlist_bounds=0 191\'\n++ med_petlist_bounds=\'0 191\'\n++ export \'atm_petlist_bounds=0 203\'\n++ atm_petlist_bounds=\'0 203\'\n++ export \'ocn_petlist_bounds=204 263\'\n++ ocn_petlist_bounds=\'204 263\'\n++ export \'ice_petlist_bounds=264 287\'\n++ ice_petlist_bounds=\'264 287\'\n++ export ATMRES=C192\n++ ATMRES=C192\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export OCNRES=050\n++ OCNRES=050\n++ export ICERES=0.50\n++ ICERES=0.50\n++ export NX_GLB=720\n++ NX_GLB=720\n++ export NY_GLB=576\n++ NY_GLB=576\n++ export NPROC_ICE=24\n++ NPROC_ICE=24\n++ export CDMBWD=0.23,1.5,1.0,1.0\n++ CDMBWD=0.23,1.5,1.0,1.0\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_050\n++ MOM_INPUT=MOM_input_template_050\n++ export MESHOCN_ICE=mesh.mx050.nc\n++ MESHOCN_ICE=mesh.mx050.nc\n++ export CICEGRID=grid_cice_NEMS_mx050.nc\n++ CICEGRID=grid_cice_NEMS_mx050.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_controlfrac_c192_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192\'\n+ [[ 190 == 0 ]]\n+ [[ RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 == \\#* ]]\n+ [[ RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 == COMPILE* ]]\n+ [[ RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 == RUN* ]]\n++ echo RUN \'|\' cpld_restartfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c192\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restartfrac_c192\n++ echo RUN \'|\' cpld_restartfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c192\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restartfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c192\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restartfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c192\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_controlfrac_c192\n++ echo RUN \'|\' cpld_restartfrac_c192 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c192\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restartfrac_c192 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 84\n+ TEST_NR=084\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restartfrac_c192\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart - frac grid\'\n++ export CNTL_DIR=cpld_controlfrac_c192\n++ CNTL_DIR=cpld_controlfrac_c192\n++ export \'LIST_FILES=phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ LIST_FILES=\'phyf048.tile1.nc phyf048.tile2.nc phyf048.tile3.nc phyf048.tile4.nc phyf048.tile5.nc phyf048.tile6.nc dynf048.tile1.nc dynf048.tile2.nc dynf048.tile3.nc dynf048.tile4.nc dynf048.tile5.nc dynf048.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-05-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=2\n++ DAYS=2\n++ export FHMAX=48\n++ FHMAX=48\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=36\n++ RESTART_N=36\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ export TASKS=288\n++ TASKS=288\n++ export TPN=40\n++ TPN=40\n++ export INPES=4\n++ INPES=4\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=12\n++ WRTTASK_PER_GROUP=12\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export \'med_petlist_bounds=0 191\'\n++ med_petlist_bounds=\'0 191\'\n++ export \'atm_petlist_bounds=0 203\'\n++ atm_petlist_bounds=\'0 203\'\n++ export \'ocn_petlist_bounds=204 263\'\n++ ocn_petlist_bounds=\'204 263\'\n++ export \'ice_petlist_bounds=264 287\'\n++ ice_petlist_bounds=\'264 287\'\n++ export ATMRES=C192\n++ ATMRES=C192\n++ export NPX=193\n++ NPX=193\n++ export NPY=193\n++ NPY=193\n++ export IMO=768\n++ IMO=768\n++ export JMO=384\n++ JMO=384\n++ export OCNRES=050\n++ OCNRES=050\n++ export ICERES=0.50\n++ ICERES=0.50\n++ export NX_GLB=720\n++ NX_GLB=720\n++ export NY_GLB=576\n++ NY_GLB=576\n++ export NPROC_ICE=24\n++ NPROC_ICE=24\n++ export CDMBWD=0.23,1.5,1.0,1.0\n++ CDMBWD=0.23,1.5,1.0,1.0\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_050\n++ MOM_INPUT=MOM_input_template_050\n++ export MESHOCN_ICE=mesh.mx050.nc\n++ MESHOCN_ICE=mesh.mx050.nc\n++ export CICEGRID=grid_cice_NEMS_mx050.nc\n++ CICEGRID=grid_cice_NEMS_mx050.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ CICEMASK=kmtu_cice_NEMS_mx050.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.720x576.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.720x576.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t382.768.384.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t382.768.384.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t382.768.384.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restartfrac_c192_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_controlfrac_c192 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_controlfrac_c192_prod == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_control_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_control_c384\n++ echo RUN \'|\' cpld_control_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_control_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_control_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_control_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_control_c384 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 85\n+ TEST_NR=085\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_control_c384\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025\'\n++ export CNTL_DIR=cpld_control_c384\n++ CNTL_DIR=cpld_control_c384\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export TASKS=318\n++ TASKS=318\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 269\'\n++ ocn_petlist_bounds=\'150 269\'\n++ export \'ice_petlist_bounds=270 317\'\n++ ice_petlist_bounds=\'270 317\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_control_c384_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384\'\n+ [[ 186 == 0 ]]\n+ [[ RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 == \\#* ]]\n+ [[ RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 == COMPILE* ]]\n+ [[ RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 == RUN* ]]\n++ echo RUN \'|\' cpld_restart_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c384\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart_c384\n++ echo RUN \'|\' cpld_restart_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c384\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restart_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c384\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c384\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_control_c384\n++ echo RUN \'|\' cpld_restart_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_control_c384\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart_c384 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 86\n+ TEST_NR=086\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart_c384\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart\'\n++ export CNTL_DIR=cpld_control_c384\n++ CNTL_DIR=cpld_control_c384\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ export TASKS=318\n++ TASKS=318\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 269\'\n++ ocn_petlist_bounds=\'150 269\'\n++ export \'ice_petlist_bounds=270 317\'\n++ ice_petlist_bounds=\'270 317\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_c384_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_control_c384 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_control_c384_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_controlfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_controlfrac_c384\n++ echo RUN \'|\' cpld_controlfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_controlfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_controlfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_controlfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_controlfrac_c384 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 87\n+ TEST_NR=087\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_controlfrac_c384\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - frac grid \'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - frac grid \'\n++ export CNTL_DIR=cpld_controlfrac_c384\n++ CNTL_DIR=cpld_controlfrac_c384\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export TASKS=318\n++ TASKS=318\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 269\'\n++ ocn_petlist_bounds=\'150 269\'\n++ export \'ice_petlist_bounds=270 317\'\n++ ice_petlist_bounds=\'270 317\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_controlfrac_c384_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384\'\n+ [[ 190 == 0 ]]\n+ [[ RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 == \\#* ]]\n+ [[ RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 == COMPILE* ]]\n+ [[ RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 == RUN* ]]\n++ echo RUN \'|\' cpld_restartfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c384\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restartfrac_c384\n++ echo RUN \'|\' cpld_restartfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c384\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restartfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c384\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restartfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c384\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_controlfrac_c384\n++ echo RUN \'|\' cpld_restartfrac_c384 \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_controlfrac_c384\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restartfrac_c384 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 88\n+ TEST_NR=088\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restartfrac_c384\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart - frac grid\'\n++ export CNTL_DIR=cpld_controlfrac_c384\n++ CNTL_DIR=cpld_controlfrac_c384\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20161003.120000\n++ RESTART_FILE_PREFIX=20161003.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n++ RESTART_FILE_SUFFIX_HRS=2016-10-03-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ RESTART_FILE_SUFFIX_SECS=2016-10-03-43200\n++ export TASKS=318\n++ TASKS=318\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 269\'\n++ ocn_petlist_bounds=\'150 269\'\n++ export \'ice_petlist_bounds=270 317\'\n++ ice_petlist_bounds=\'270 317\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=7\n+ (( NODES * TPN < TASKS ))\n+ NODES=8\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restartfrac_c384_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_controlfrac_c384 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_controlfrac_c384_prod == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmark \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmark\n++ echo RUN \'|\' cpld_bmark \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_bmark \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmark \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmark \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmark ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 89\n+ TEST_NR=089\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmark\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test\'\n++ export CNTL_DIR=cpld_bmark\n++ CNTL_DIR=cpld_bmark\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmark_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark == \\#* ]]\n+ [[ RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark == COMPILE* ]]\n+ [[ RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark == RUN* ]]\n++ echo RUN \'|\' cpld_restart_bmark \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmark\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart_bmark\n++ echo RUN \'|\' cpld_restart_bmark \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmark\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restart_bmark \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmark\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart_bmark \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmark\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_bmark\n++ echo RUN \'|\' cpld_restart_bmark \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmark\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart_bmark ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 90\n+ TEST_NR=090\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart_bmark\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart\'\n++ export CNTL_DIR=cpld_bmark\n++ CNTL_DIR=cpld_bmark\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20130401.120000\n++ RESTART_FILE_PREFIX=20130401.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2013-04-01-12\n++ RESTART_FILE_SUFFIX_HRS=2013-04-01-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2013-04-01-43200\n++ RESTART_FILE_SUFFIX_SECS=2013-04-01-43200\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_bmark_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_bmark != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_bmark_prod == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmarkfrac\n++ echo RUN \'|\' cpld_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmarkfrac ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 91\n+ TEST_NR=091\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmarkfrac\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - frac grid\'\n++ export CNTL_DIR=cpld_bmarkfrac\n++ CNTL_DIR=cpld_bmarkfrac\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmarkfrac_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac\'\n+ [[ 183 == 0 ]]\n+ [[ RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac == \\#* ]]\n+ [[ RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac == COMPILE* ]]\n+ [[ RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac == RUN* ]]\n++ echo RUN \'|\' cpld_restart_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmarkfrac\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart_bmarkfrac\n++ echo RUN \'|\' cpld_restart_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmarkfrac\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_restart_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmarkfrac\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmarkfrac\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_bmarkfrac\n++ echo RUN \'|\' cpld_restart_bmarkfrac \'|\' - wcoss_cray jet.intel \'|\' \'|\' cpld_bmarkfrac\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart_bmarkfrac ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 92\n+ TEST_NR=092\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart_bmarkfrac\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart - frac grid\'\n++ export CNTL_DIR=cpld_bmarkfrac\n++ CNTL_DIR=cpld_bmarkfrac\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export FHROT=12\n++ FHROT=12\n++ export RESTART_N=12\n++ RESTART_N=12\n+++ printf %02d 12\n++ export RESTART_FILE_PREFIX=20130401.120000\n++ RESTART_FILE_PREFIX=20130401.120000\n+++ printf %02d 12\n++ export RESTART_FILE_SUFFIX_HRS=2013-04-01-12\n++ RESTART_FILE_SUFFIX_HRS=2013-04-01-12\n+++ printf %02d 43200\n++ export RESTART_FILE_SUFFIX_SECS=2013-04-01-43200\n++ RESTART_FILE_SUFFIX_SECS=2013-04-01-43200\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_bmarkfrac_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_bmarkfrac != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_bmarkfrac_prod == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'#6h/6h/12h restart test\'\n+ [[ 23 == 0 ]]\n+ [[ #6h/6h/12h restart test == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# test fails on gaea with esmfpio error\'\n+ [[ 39 == 0 ]]\n+ [[ # test fails on gaea with esmfpio error == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmarkfrac_v16\n++ echo RUN \'|\' cpld_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmarkfrac_v16 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 93\n+ TEST_NR=093\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmarkfrac_v16\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - frac grid - v16\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - frac grid - v16\'\n++ export CNTL_DIR=cpld_bmarkfrac_v16\n++ CNTL_DIR=cpld_bmarkfrac_v16\n++ export \'LIST_FILES=phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ LIST_FILES=\'phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export DAYS=0.5\n++ DAYS=0.5\n++ export FHMAX=12\n++ FHMAX=12\n++ export RESTART_INTERVAL=6\n++ RESTART_INTERVAL=6\n++ export RESTART_N=6\n++ RESTART_N=6\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=300\n++ DT_ATMOS=300\n++ export DT_CICE=300\n++ DT_CICE=300\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=300\n++ CPL_FAST=300\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=300\n++ coupling_interval_fast_sec=300\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export NPZ=127\n++ NPZ=127\n++ export NPZP=128\n++ NPZP=128\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_v16.nml.IN\n++ INPUT_NML=input.benchmark_v16.nml.IN\n++ export FIELD_TABLE=field_table_gfsv16\n++ FIELD_TABLE=field_table_gfsv16\n++ export DIAG_TABLE=diag_table_gfsv16\n++ DIAG_TABLE=diag_table_gfsv16\n++ export SUITE_NAME=FV3_GFS_v16_coupled\n++ SUITE_NAME=FV3_GFS_v16_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmarkfrac_v16_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_16 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16\'\n+ [[ 198 == 0 ]]\n+ [[ RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 == \\#* ]]\n+ [[ RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 == COMPILE* ]]\n+ [[ RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 == RUN* ]]\n++ echo RUN \'|\' cpld_restart_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' \'|\' cpld_bmarkfrac_v16\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_restart_bmarkfrac_v16\n++ echo RUN \'|\' cpld_restart_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' \'|\' cpld_bmarkfrac_v16\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_restart_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' \'|\' cpld_bmarkfrac_v16\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' cpld_restart_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' \'|\' cpld_bmarkfrac_v16\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=cpld_bmarkfrac_v16\n++ echo RUN \'|\' cpld_restart_bmarkfrac_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' \'|\' cpld_bmarkfrac_v16\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_restart_bmarkfrac_v16 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 94\n+ TEST_NR=094\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_restart_bmarkfrac_v16\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - restart - frac grid - v16\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - restart - frac grid - v16\'\n++ export CNTL_DIR=cpld_bmarkfrac_v16\n++ CNTL_DIR=cpld_bmarkfrac_v16\n++ export \'LIST_FILES=phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ LIST_FILES=\'phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export DAYS=0.5\n++ DAYS=0.5\n++ export FHMAX=12\n++ FHMAX=12\n++ export FHROT=6\n++ FHROT=6\n++ export RESTART_N=6\n++ RESTART_N=6\n+++ printf %02d 6\n++ export RESTART_FILE_PREFIX=20130401.060000\n++ RESTART_FILE_PREFIX=20130401.060000\n+++ printf %02d 6\n++ export RESTART_FILE_SUFFIX_HRS=2013-04-01-06\n++ RESTART_FILE_SUFFIX_HRS=2013-04-01-06\n+++ printf %02d 21600\n++ export RESTART_FILE_SUFFIX_SECS=2013-04-01-21600\n++ RESTART_FILE_SUFFIX_SECS=2013-04-01-21600\n++ export TASKS=480\n++ TASKS=480\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=300\n++ DT_ATMOS=300\n++ export DT_CICE=300\n++ DT_CICE=300\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=300\n++ CPL_FAST=300\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=300\n++ coupling_interval_fast_sec=300\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export NPZ=127\n++ NPZ=127\n++ export NPZP=128\n++ NPZP=128\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ WARM_START=.T.\n++ MAKE_NH=.F.\n++ NA_INIT=0\n++ EXTERNAL_IC=.F.\n++ NGGPS_IC=.F.\n++ MOUNTAIN=.T.\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export INPUT_NML=input.benchmark_v16.nml.IN\n++ INPUT_NML=input.benchmark_v16.nml.IN\n++ export FIELD_TABLE=field_table_gfsv16\n++ FIELD_TABLE=field_table_gfsv16\n++ export DIAG_TABLE=diag_table_gfsv16\n++ DIAG_TABLE=diag_table_gfsv16\n++ export SUITE_NAME=FV3_GFS_v16_coupled\n++ SUITE_NAME=FV3_GFS_v16_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=12\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_restart_bmarkfrac_v16_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ cpld_bmarkfrac_v16 != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_16 == complete and cpld_bmarkfrac_v16_prod == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo COMPILE \'|\' SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_17\'\n+ echo \' label build_options \'\\\'\'SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y WW3=Y =~ WW3=Y ]]\n+ [[ 2 != \'\' ]]\n+ echo \' trigger compile_2 == complete\'\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y WW3=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y WW3=Y =~ WW3=Y ]]\n+ COMPILE_PREV_WW3_NR=17\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmark_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmark_wave\n++ echo RUN \'|\' cpld_bmark_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_bmark_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmark_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmark_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmark_wave ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 95\n+ TEST_NR=095\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmark_wave\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves\'\n++ export CNTL_DIR=cpld_bmark_wave\n++ CNTL_DIR=cpld_bmark_wave\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc 20130402.000000.out_grd.gwes_30m 20130402.000000.out_pnt.points 20130402.000000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc 20130402.000000.out_grd.gwes_30m 20130402.000000.out_pnt.points 20130402.000000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export WLCLK=60\n++ WLCLK=60\n++ export TASKS=520\n++ TASKS=520\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export \'wav_petlist_bounds=480 519\'\n++ wav_petlist_bounds=\'480 519\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export CPLWAV2ATM=.T.\n++ CPLWAV2ATM=.T.\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_USE_WAVES=True\n++ MOM6_USE_WAVES=True\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=13\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmark_wave_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_17 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmarkfrac_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmarkfrac_wave\n++ echo RUN \'|\' cpld_bmarkfrac_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_bmarkfrac_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmarkfrac_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmarkfrac_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmarkfrac_wave ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 96\n+ TEST_NR=096\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmarkfrac_wave\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves - frac grid\'\n++ export CNTL_DIR=cpld_bmarkfrac_wave\n++ CNTL_DIR=cpld_bmarkfrac_wave\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc 20130402.000000.out_grd.gwes_30m 20130402.000000.out_pnt.points 20130402.000000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc 20130402.000000.out_grd.gwes_30m 20130402.000000.out_pnt.points 20130402.000000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-02-00000.nc RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export WLCLK=60\n++ WLCLK=60\n++ export TASKS=520\n++ TASKS=520\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export \'wav_petlist_bounds=480 519\'\n++ wav_petlist_bounds=\'480 519\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=450\n++ DT_ATMOS=450\n++ export DT_CICE=450\n++ DT_CICE=450\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=450\n++ CPL_FAST=450\n++ export NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=450\n++ coupling_interval_fast_sec=450\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export CPLWAV2ATM=.T.\n++ CPLWAV2ATM=.T.\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_USE_WAVES=True\n++ MOM6_USE_WAVES=True\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_ccpp.nml.IN\n++ INPUT_NML=input.benchmark_ccpp.nml.IN\n++ export FIELD_TABLE=field_table.gfdlmp\n++ FIELD_TABLE=field_table.gfdlmp\n++ export SUITE_NAME=FV3_GFS_v15p2_coupled\n++ SUITE_NAME=FV3_GFS_v15p2_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=13\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmarkfrac_wave_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_17 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_bmarkfrac_wave_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_bmarkfrac_wave_v16\n++ echo RUN \'|\' cpld_bmarkfrac_wave_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_bmarkfrac_wave_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_bmarkfrac_wave_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_bmarkfrac_wave_v16 \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_bmarkfrac_wave_v16 ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 97\n+ TEST_NR=097\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_bmarkfrac_wave_v16\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves-frac grid - v16\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves-frac grid - v16\'\n++ export CNTL_DIR=cpld_bmarkfrac_wave_v16\n++ CNTL_DIR=cpld_bmarkfrac_wave_v16\n++ export \'LIST_FILES=phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc 20130401.120000.out_grd.gwes_30m 20130401.120000.out_pnt.points 20130401.120000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ LIST_FILES=\'phyf012.tile1.nc phyf012.tile2.nc phyf012.tile3.nc phyf012.tile4.nc phyf012.tile5.nc phyf012.tile6.nc dynf012.tile1.nc dynf012.tile2.nc dynf012.tile3.nc dynf012.tile4.nc dynf012.tile5.nc dynf012.tile6.nc 20130401.120000.out_grd.gwes_30m 20130401.120000.out_pnt.points 20130401.120000.restart.gwes_30m RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2013-04-01-43200.nc RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export SYEAR=2013\n++ SYEAR=2013\n++ export SMONTH=04\n++ SMONTH=04\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export DAYS=0.5\n++ DAYS=0.5\n++ export FHMAX=12\n++ FHMAX=12\n++ export RESTART_INTERVAL=12\n++ RESTART_INTERVAL=12\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export TASKS=520\n++ TASKS=520\n++ export TPN=40\n++ TPN=40\n++ export INPES=6\n++ INPES=6\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=24\n++ WRTTASK_PER_GROUP=24\n++ export \'med_petlist_bounds=0 287\'\n++ med_petlist_bounds=\'0 287\'\n++ export \'atm_petlist_bounds=0 311\'\n++ atm_petlist_bounds=\'0 311\'\n++ export \'ocn_petlist_bounds=312 431\'\n++ ocn_petlist_bounds=\'312 431\'\n++ export \'ice_petlist_bounds=432 479\'\n++ ice_petlist_bounds=\'432 479\'\n++ export \'wav_petlist_bounds=480 519\'\n++ wav_petlist_bounds=\'480 519\'\n++ export ATMRES=C384\n++ ATMRES=C384\n++ export NPX=385\n++ NPX=385\n++ export NPY=385\n++ NPY=385\n++ export IMO=1536\n++ IMO=1536\n++ export JMO=768\n++ JMO=768\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export CDMBWD=1.1,0.72,1.0,1.0\n++ CDMBWD=1.1,0.72,1.0,1.0\n++ export DT_ATMOS=300\n++ DT_ATMOS=300\n++ export DT_CICE=300\n++ DT_CICE=300\n++ export DT_DYNAM_MOM6=900\n++ DT_DYNAM_MOM6=900\n++ export DT_THERM_MOM6=1800\n++ DT_THERM_MOM6=1800\n++ export CPL_SLOW=1800\n++ CPL_SLOW=1800\n++ export CPL_FAST=300\n++ CPL_FAST=300\n++ export NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ export coupling_interval_slow_sec=1800\n++ coupling_interval_slow_sec=1800\n++ export coupling_interval_fast_sec=300\n++ coupling_interval_fast_sec=300\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export NPZ=127\n++ NPZ=127\n++ export NPZP=128\n++ NPZP=128\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export CPLWAV2ATM=.T.\n++ CPLWAV2ATM=.T.\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ CHLCLIM=seawifs-clim-1997-2010.1440x1080.v20180328.nc\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t766.1536.768.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.statsgo.t766.1536.768.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t766.1536.768.rg.grb\'\\\'\',\'\n++ export OZ_PHYS_NEW=.T.\n++ OZ_PHYS_NEW=.T.\n++ export MOM6_USE_WAVES=True\n++ MOM6_USE_WAVES=True\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export MOM6_REPRO_LA=True\n++ MOM6_REPRO_LA=True\n++ export RUNID=cpcice\n++ RUNID=cpcice\n++ export INPUT_NML=input.benchmark_v16.nml.IN\n++ INPUT_NML=input.benchmark_v16.nml.IN\n++ export FIELD_TABLE=field_table_gfsv16\n++ FIELD_TABLE=field_table_gfsv16\n++ export DIAG_TABLE=diag_table_gfsv16\n++ DIAG_TABLE=diag_table_gfsv16\n++ export SUITE_NAME=FV3_GFS_v16_coupled\n++ SUITE_NAME=FV3_GFS_v16_coupled\n++ export FV3_RUN=cpld_bmark_run.IN\n++ FV3_RUN=cpld_bmark_run.IN\n+ NODES=13\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_bmarkfrac_wave_v16_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_17 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 |\'\n+ [[ 179 == 0 ]]\n+ [[ RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_control_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_control_wave\n++ echo RUN \'|\' cpld_control_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray gaea.intel jet.intel\'\n++ echo RUN \'|\' cpld_control_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_control_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_control_wave \'|\' - wcoss_cray gaea.intel jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_control_wave ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray gaea.intel jet.intel != \'\' ]]\n+ [[ - wcoss_cray gaea.intel jet.intel == -* ]]\n+ [[ - wcoss_cray gaea.intel jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 98\n+ TEST_NR=098\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_control_wave\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 with waves\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 with waves\'\n++ export CNTL_DIR=cpld_control_wave\n++ CNTL_DIR=cpld_control_wave\n++ export \'LIST_FILES=phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc 20161004.000000.out_grd.glo_1deg 20161004.000000.out_pnt.points 20161004.000000.restart.glo_1deg\'\n++ LIST_FILES=\'phyf024.tile1.nc phyf024.tile2.nc phyf024.tile3.nc phyf024.tile4.nc phyf024.tile5.nc phyf024.tile6.nc dynf024.tile1.nc dynf024.tile2.nc dynf024.tile3.nc dynf024.tile4.nc dynf024.tile5.nc dynf024.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-04-00000.nc RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc 20161004.000000.out_grd.glo_1deg 20161004.000000.out_pnt.points 20161004.000000.restart.glo_1deg\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export TASKS=204\n++ TASKS=204\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export \'wav_petlist_bounds=192 203\'\n++ wav_petlist_bounds=\'192 203\'\n++ export NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ NEMS_CONFIGURE=nems.configure.cpld_wave.IN\n++ export CPLWAV=.T.\n++ CPLWAV=.T.\n++ export CPLWAV2ATM=.T.\n++ CPLWAV2ATM=.T.\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=5\n+ (( NODES * TPN < TASKS ))\n+ NODES=6\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_control_wave_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_17 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y\'\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo COMPILE \'|\' DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_18\'\n+ echo \' label build_options \'\\\'\'DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ DEBUG=Y SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ WW3=Y ]]\n+ [[ DEBUG=Y SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ DEBUG=Y SUITES=FV3_GFS_2017_COUPLED,FV3_GFS_2017_SATMEDMF_COUPLED,FV3_GFS_V15P2_COUPLED,FV3_GFS_V16_COUPLED S2S=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_debug | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_debug \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_debug\n++ echo RUN \'|\' cpld_debug \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_debug \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_debug \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_debug \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_debug ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 99\n+ TEST_NR=099\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_debug\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug\'\n++ export CNTL_DIR=cpld_debug\n++ CNTL_DIR=cpld_debug\n++ export \'LIST_FILES=phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-03-21600.nc RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc\'\n++ LIST_FILES=\'phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-03-21600.nc RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=0.25\n++ DAYS=0.25\n++ export FHMAX=6\n++ FHMAX=6\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export WLCLK=60\n++ WLCLK=60\n++ export RESTART_N=6\n++ RESTART_N=6\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_debug_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_18 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' cpld_debugfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=cpld_debugfrac\n++ echo RUN \'|\' cpld_debugfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' cpld_debugfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' cpld_debugfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' cpld_debugfrac \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/cpld_debugfrac ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 100\n+ TEST_NR=100\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/cpld_debugfrac\n++ export \'TEST_DESCR=Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug - frac grid\'\n++ TEST_DESCR=\'Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug - frac grid\'\n++ export CNTL_DIR=cpld_debugfrac\n++ CNTL_DIR=cpld_debugfrac\n++ export \'LIST_FILES=phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-03-21600.nc RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc\'\n++ LIST_FILES=\'phyf006.tile1.nc phyf006.tile2.nc phyf006.tile3.nc phyf006.tile4.nc phyf006.tile5.nc phyf006.tile6.nc dynf006.tile1.nc dynf006.tile2.nc dynf006.tile3.nc dynf006.tile4.nc dynf006.tile5.nc dynf006.tile6.nc RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc RESTART/MOM.res.nc RESTART/iced.2016-10-03-21600.nc RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc\'\n++ export_fv3\n++ export FV3=true\n++ FV3=true\n++ export S2S=false\n++ S2S=false\n++ export DATM=false\n++ DATM=false\n++ export THRD=1\n++ THRD=1\n++ export WLCLK=15\n++ WLCLK=15\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export TASKS=150\n++ TASKS=150\n++ export TPN=40\n++ TPN=40\n++ export RESTART_INTERVAL=0\n++ RESTART_INTERVAL=0\n++ export QUILTING=.true.\n++ QUILTING=.true.\n++ export WRITE_GROUP=1\n++ WRITE_GROUP=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export OUTPUT_HISTORY=.true.\n++ OUTPUT_HISTORY=.true.\n++ export WRITE_DOPOST=.false.\n++ WRITE_DOPOST=.false.\n++ export NUM_FILES=2\n++ NUM_FILES=2\n++ export \'FILENAME_BASE=\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ FILENAME_BASE=\'\'\\\'\'dyn\'\\\'\' \'\\\'\'phy\'\\\'\'\'\n++ export \'OUTPUT_GRID=\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ OUTPUT_GRID=\'\'\\\'\'cubed_sphere_grid\'\\\'\'\'\n++ export \'OUTPUT_FILE=\'\\\'\'netcdf\'\\\'\'\'\n++ OUTPUT_FILE=\'\'\\\'\'netcdf\'\\\'\'\'\n++ export IDEFLATE=0\n++ IDEFLATE=0\n++ export NBITS=0\n++ NBITS=0\n++ export WRITE_NEMSIOFLIP=.false.\n++ WRITE_NEMSIOFLIP=.false.\n++ export WRITE_FSYNCFLAG=.false.\n++ WRITE_FSYNCFLAG=.false.\n++ export IMO=384\n++ IMO=384\n++ export JMO=190\n++ JMO=190\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export READ_INCREMENT=.F.\n++ READ_INCREMENT=.F.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export DO_RRTMGP=.F.\n++ DO_RRTMGP=.F.\n++ export ICLOUD=0\n++ ICLOUD=0\n++ export IAER=111\n++ IAER=111\n++ export ICLIQ_SW=1\n++ ICLIQ_SW=1\n++ export IOVR=1\n++ IOVR=1\n++ export IMP_PHYSICS=11\n++ IMP_PHYSICS=11\n++ export NWAT=6\n++ NWAT=6\n++ export DNATS=1\n++ DNATS=1\n++ export DO_SAT_ADJ=.T.\n++ DO_SAT_ADJ=.T.\n++ export LHEATSTRG=.F.\n++ LHEATSTRG=.F.\n++ export LGFDLMPRAD=.F.\n++ LGFDLMPRAD=.F.\n++ export EFFR_IN=.F.\n++ EFFR_IN=.F.\n++ export LRADAR=.T.\n++ LRADAR=.T.\n++ export LTAEROSOL=.T.\n++ LTAEROSOL=.T.\n++ export LDIAG_UGWP=.F.\n++ LDIAG_UGWP=.F.\n++ export DO_UGWP=.F.\n++ DO_UGWP=.F.\n++ export DO_TOFD=.F.\n++ DO_TOFD=.F.\n++ export GWD_OPT=1\n++ GWD_OPT=1\n++ export DO_UGWP_V0=.F.\n++ DO_UGWP_V0=.F.\n++ export DO_UGWP_V0_OROG_ONLY=.F.\n++ DO_UGWP_V0_OROG_ONLY=.F.\n++ export DO_GSL_DRAG_LS_BL=.F.\n++ DO_GSL_DRAG_LS_BL=.F.\n++ export DO_GSL_DRAG_SS=.F.\n++ DO_GSL_DRAG_SS=.F.\n++ export DO_GSL_DRAG_TOFD=.F.\n++ DO_GSL_DRAG_TOFD=.F.\n++ export DO_UGWP_V1=.F.\n++ DO_UGWP_V1=.F.\n++ export DO_UGWP_V1_OROG_ONLY=.F.\n++ DO_UGWP_V1_OROG_ONLY=.F.\n++ export SATMEDMF=.F.\n++ SATMEDMF=.F.\n++ export ISATMEDMF=0\n++ ISATMEDMF=0\n++ export HYBEDMF=.T.\n++ HYBEDMF=.T.\n++ export SHINHONG=.F.\n++ SHINHONG=.F.\n++ export DO_YSU=.F.\n++ DO_YSU=.F.\n++ export DO_MYNNEDMF=.F.\n++ DO_MYNNEDMF=.F.\n++ export DO_MYJPBL=.F.\n++ DO_MYJPBL=.F.\n++ export HURR_PBL=.F.\n++ HURR_PBL=.F.\n++ export MONINQ_FAC=1.0\n++ MONINQ_FAC=1.0\n++ export IMFSHALCNV=2\n++ IMFSHALCNV=2\n++ export HWRF_SAMFSHAL=.F.\n++ HWRF_SAMFSHAL=.F.\n++ export IMFDEEPCNV=2\n++ IMFDEEPCNV=2\n++ export HWRF_SAMFDEEP=.F.\n++ HWRF_SAMFDEEP=.F.\n++ export DO_MYJSFC=.F.\n++ DO_MYJSFC=.F.\n++ export DO_MYNNSFCLAY=.F.\n++ DO_MYNNSFCLAY=.F.\n++ export LSM=1\n++ LSM=1\n++ export LSOIL_LSM=4\n++ LSOIL_LSM=4\n++ export LANDICE=.T.\n++ LANDICE=.T.\n++ export KICE=2\n++ KICE=2\n++ export OZ_PHYS_OLD=.T.\n++ OZ_PHYS_OLD=.T.\n++ export OZ_PHYS_NEW=.F.\n++ OZ_PHYS_NEW=.F.\n++ export H2O_PHYS=.F.\n++ H2O_PHYS=.F.\n++ export CPL=.F.\n++ CPL=.F.\n++ export CPLFLX=.F.\n++ CPLFLX=.F.\n++ export CPLWAV=.F.\n++ CPLWAV=.F.\n++ export CPLWAV2ATM=.F.\n++ CPLWAV2ATM=.F.\n++ export DAYS=1\n++ DAYS=1\n++ export NPX=97\n++ NPX=97\n++ export NPY=97\n++ NPY=97\n++ export NPZ=64\n++ NPZ=64\n++ export NPZP=65\n++ NPZP=65\n++ export NSTF_NAME=2,1,1,0,5\n++ NSTF_NAME=2,1,1,0,5\n++ export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48\n++ export NFHOUT=3\n++ NFHOUT=3\n++ export NFHMAX_HF=12\n++ NFHMAX_HF=12\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export \'FNALBC=\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ FNALBC=\'\'\\\'\'global_snowfree_albedo.bosu.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNVETC=\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ FNVETC=\'\'\\\'\'global_vegtype.igbp.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSOTC=\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ FNSOTC=\'\'\\\'\'global_soiltype.statsgo.t126.384.190.rg.grb\'\\\'\',\'\n++ export \'FNSMCC=\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ FNSMCC=\'\'\\\'\'global_soilmgldas.t126.384.190.grb\'\\\'\',\'\n++ export \'FNABSC=\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ FNABSC=\'\'\\\'\'global_mxsnoalb.uariz.t126.384.190.rg.grb\'\\\'\',\'\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2016\n++ SYEAR=2016\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=03\n++ SDAY=03\n++ export SHOUR=00\n++ SHOUR=00\n+++ expr 1 \'*\' 24\n++ export FHMAX=24\n++ FHMAX=24\n++ export DT_ATMOS=1800\n++ DT_ATMOS=1800\n++ export FHCYC=24\n++ FHCYC=24\n++ export FHROT=0\n++ FHROT=0\n++ export LDIAG3D=.F.\n++ LDIAG3D=.F.\n++ export QDIAG3D=.F.\n++ QDIAG3D=.F.\n++ export MAX_OUTPUT_FIELDS=300\n++ MAX_OUTPUT_FIELDS=300\n++ export DO_SPPT=.F.\n++ DO_SPPT=.F.\n++ export DO_SHUM=.F.\n++ DO_SHUM=.F.\n++ export DO_SKEB=.F.\n++ DO_SKEB=.F.\n++ export LNDP_TYPE=0\n++ LNDP_TYPE=0\n++ export N_VAR_LNDP=0\n++ N_VAR_LNDP=0\n++ export LNDP_EACH_STEP=.F.\n++ LNDP_EACH_STEP=.F.\n++ export SKEB=-999.\n++ SKEB=-999.\n++ export SPPT=-999.\n++ SPPT=-999.\n++ export SHUM=-999.\n++ SHUM=-999.\n++ export \'IAU_INC_FILES=\'\\\'\'\'\\\'\'\'\n++ IAU_INC_FILES=\'\'\\\'\'\'\\\'\'\'\n++ export DO_CA=.F.\n++ DO_CA=.F.\n++ export CA_SGS=.F.\n++ CA_SGS=.F.\n++ export CA_GLOBAL=.F.\n++ CA_GLOBAL=.F.\n++ export IAU_DRYMASSFIXER=.false.\n++ IAU_DRYMASSFIXER=.false.\n++ export WRITE_RESTART_WITH_BCS=.false.\n++ WRITE_RESTART_WITH_BCS=.false.\n++ export coupling_interval_fast_sec=0\n++ coupling_interval_fast_sec=0\n++ export_cpl\n++ export FV3=true\n++ FV3=true\n++ export S2S=true\n++ S2S=true\n++ export DATM=false\n++ DATM=false\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FDIAG=6\n++ FDIAG=6\n++ export WLCLK=30\n++ WLCLK=30\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export TASKS=192\n++ TASKS=192\n++ export TPN=40\n++ TPN=40\n++ export INPES=3\n++ INPES=3\n++ export JNPES=8\n++ JNPES=8\n++ export THRD=1\n++ THRD=1\n++ export WRTTASK_PER_GROUP=6\n++ WRTTASK_PER_GROUP=6\n++ export \'med_petlist_bounds=0 143\'\n++ med_petlist_bounds=\'0 143\'\n++ export \'atm_petlist_bounds=0 149\'\n++ atm_petlist_bounds=\'0 149\'\n++ export \'ocn_petlist_bounds=150 179\'\n++ ocn_petlist_bounds=\'150 179\'\n++ export \'ice_petlist_bounds=180 191\'\n++ ice_petlist_bounds=\'180 191\'\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export NEMS_CONFIGURE=nems.configure.cpld.IN\n++ NEMS_CONFIGURE=nems.configure.cpld.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=fv3\n++ atm_model=fv3\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export wav_model=ww3\n++ wav_model=ww3\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig\n++ CPLMODE=nems_orig\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=false\n++ use_coldstart=false\n++ export use_mommesh=false\n++ use_mommesh=false\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export FRAC_GRID=.F.\n++ FRAC_GRID=.F.\n++ export FRAC_GRID_INPUT=.T.\n++ FRAC_GRID_INPUT=.T.\n++ export SUITE_NAME=FV3_GFS_2017_coupled\n++ SUITE_NAME=FV3_GFS_2017_coupled\n++ export INPUT_NML=input.mom6_ccpp.nml.IN\n++ INPUT_NML=input.mom6_ccpp.nml.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export FHROT=0\n++ FHROT=0\n++ export NSOUT=-1\n++ NSOUT=-1\n++ export FDIAG=6\n++ FDIAG=6\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export NFHMAX_HF=-1\n++ NFHMAX_HF=-1\n++ export NFHOUT_HF=-1\n++ NFHOUT_HF=-1\n++ export CPLFLX=.T.\n++ CPLFLX=.T.\n++ export CPL=.true.\n++ CPL=.true.\n++ export NSTF_NAME=0,0,0,0,0\n++ NSTF_NAME=0,0,0,0,0\n++ export DZ_MIN=2\n++ DZ_MIN=2\n++ export MIN_SEAICE=1.0e-11\n++ MIN_SEAICE=1.0e-11\n++ export CDMBWD_c96=0.14,1.8,1.0,1.0\n++ CDMBWD_c96=0.14,1.8,1.0,1.0\n++ export CDMBWD_c192=0.23,1.5,1.0,1.0\n++ CDMBWD_c192=0.23,1.5,1.0,1.0\n++ export CDMBWD_c384=1.1,0.72,1.0,1.0\n++ CDMBWD_c384=1.1,0.72,1.0,1.0\n++ export CDMBWD_c768=4.0,0.15,1.0,1.0\n++ CDMBWD_c768=4.0,0.15,1.0,1.0\n++ export CDMBWD=0.14,1.8,1.0,1.0\n++ CDMBWD=0.14,1.8,1.0,1.0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export MAKE_NH=.T.\n++ MAKE_NH=.T.\n++ export NA_INIT=1\n++ NA_INIT=1\n++ export EXTERNAL_IC=.T.\n++ EXTERNAL_IC=.T.\n++ export NGGPS_IC=.T.\n++ NGGPS_IC=.T.\n++ export MOUNTAIN=.F.\n++ MOUNTAIN=.F.\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ CHLCLIM=seawifs_1998-2006_smoothed_2X.nc\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export RESTART_FILE_PREFIX=\n++ RESTART_FILE_PREFIX=\n++ export RESTART_FILE_SUFFIX_HRS=\n++ RESTART_FILE_SUFFIX_HRS=\n++ export RESTART_FILE_SUFFIX_SECS=\n++ RESTART_FILE_SUFFIX_SECS=\n++ export RT35D=\n++ RT35D=\n++ export DAYS=0.25\n++ DAYS=0.25\n++ export FHMAX=6\n++ FHMAX=6\n++ export NFHOUT_HF=1\n++ NFHOUT_HF=1\n++ export WLCLK=60\n++ WLCLK=60\n++ export RESTART_N=6\n++ RESTART_N=6\n++ export FRAC_GRID=.T.\n++ FRAC_GRID=.T.\n++ export CPLMODE=nems_frac\n++ CPLMODE=nems_frac\n++ export FV3_RUN=cpld_control_run.IN\n++ FV3_RUN=cpld_control_run.IN\n+ NODES=4\n+ (( NODES * TPN < TASKS ))\n+ NODES=5\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task cpld_debugfrac_prod\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_18 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'# Data Atmosphere tests #\'\n+ [[ 179 == 0 ]]\n+ [[ # Data Atmosphere tests # == \\#* ]]\n+ continue\n+ read -r line\n+ line=\'###################################################################################################################################################################################\'\n+ [[ 179 == 0 ]]\n+ [[ ################################################################################################################################################################################### == \\#* ]]\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' DATM=Y S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'DATM=Y S2S=Y\'\n++ echo COMPILE \'|\' DATM=Y S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo COMPILE \'|\' DATM=Y S2S=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_19\'\n+ echo \' label build_options \'\\\'\'DATM=Y S2S=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ DATM=Y S2S=Y =~ WW3=Y ]]\n+ [[ DATM=Y S2S=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ DATM=Y S2S=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_control_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_control_cfsr\n++ echo RUN \'|\' datm_control_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_control_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_control_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_control_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_control_cfsr ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 101\n+ TEST_NR=101\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_control_cfsr\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_CFSR - control \'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_CFSR - control \'\n++ export CNTL_DIR=datm_control_cfsr\n++ CNTL_DIR=datm_control_cfsr\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export DATM_SRC=CFSR\n++ DATM_SRC=CFSR\n++ export FILENAME_BASE=cfsr.\n++ FILENAME_BASE=cfsr.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export FV3_RUN=cpld_datm_cfsr.IN\n++ FV3_RUN=cpld_datm_cfsr.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_control_cfsr\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr\'\n+ [[ 186 == 0 ]]\n+ [[ RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr == \\#* ]]\n+ [[ RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr == COMPILE* ]]\n+ [[ RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr == RUN* ]]\n++ echo RUN \'|\' datm_restart_cfsr \'|\' - wcoss_cray jet.intel \'|\' \'|\' datm_control_cfsr\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_restart_cfsr\n++ echo RUN \'|\' datm_restart_cfsr \'|\' - wcoss_cray jet.intel \'|\' \'|\' datm_control_cfsr\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_restart_cfsr \'|\' - wcoss_cray jet.intel \'|\' \'|\' datm_control_cfsr\n++ cut \'-d|\' -f4\n+ CB=\' \'\n++ echo RUN \'|\' datm_restart_cfsr \'|\' - wcoss_cray jet.intel \'|\' \'|\' datm_control_cfsr\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=datm_control_cfsr\n++ echo RUN \'|\' datm_restart_cfsr \'|\' - wcoss_cray jet.intel \'|\' \'|\' datm_control_cfsr\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_restart_cfsr ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 102\n+ TEST_NR=102\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_restart_cfsr\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_CFSR - restart test \'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_CFSR - restart test \'\n++ export CNTL_DIR=datm_control_cfsr\n++ CNTL_DIR=datm_control_cfsr\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export DATM_SRC=CFSR\n++ DATM_SRC=CFSR\n++ export FILENAME_BASE=cfsr.\n++ FILENAME_BASE=cfsr.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export FHROT=12\n++ FHROT=12\n++ export WARM_START=.T.\n++ WARM_START=.T.\n++ export RESTART_N=12\n++ RESTART_N=12\n++ export RUNTYPE=continue\n++ RUNTYPE=continue\n++ export USE_RESTART_TIME=.true.\n++ USE_RESTART_TIME=.true.\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_datm_cfsr.IN\n++ FV3_RUN=cpld_datm_cfsr.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_restart_cfsr\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ datm_control_cfsr != \'\' ]]\n+ [[ false == false ]]\n+ echo \' trigger compile_19 == complete and datm_control_cfsr == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_control_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_control_gefs\n++ echo RUN \'|\' datm_control_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_control_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_control_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_control_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_control_gefs ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 103\n+ TEST_NR=103\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_control_gefs\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_GEFS - control\'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_GEFS - control\'\n++ export CNTL_DIR=datm_control_gefs\n++ CNTL_DIR=datm_control_gefs\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export FV3_RUN=cpld_datm_gefs.IN\n++ FV3_RUN=cpld_datm_gefs.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_control_gefs\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_bulk_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_bulk_cfsr\n++ echo RUN \'|\' datm_bulk_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_bulk_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_bulk_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_bulk_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_bulk_cfsr ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 104\n+ TEST_NR=104\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_bulk_cfsr\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_CFSR - bulk flux test\'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_CFSR - bulk flux test\'\n++ export CNTL_DIR=datm_bulk_cfsr\n++ CNTL_DIR=datm_bulk_cfsr\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export DATM_SRC=CFSR\n++ DATM_SRC=CFSR\n++ export FILENAME_BASE=cfsr.\n++ FILENAME_BASE=cfsr.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export flux_scheme=-1\n++ flux_scheme=-1\n++ export FV3_RUN=cpld_datm_cfsr.IN\n++ FV3_RUN=cpld_datm_cfsr.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_bulk_cfsr\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_bulk_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_bulk_gefs\n++ echo RUN \'|\' datm_bulk_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_bulk_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_bulk_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_bulk_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_bulk_gefs ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 105\n+ TEST_NR=105\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_bulk_gefs\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_GEFS - bulk flux test\'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_GEFS - bulk flux test\'\n++ export CNTL_DIR=datm_bulk_gefs\n++ CNTL_DIR=datm_bulk_gefs\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export flux_scheme=-1\n++ flux_scheme=-1\n++ export FV3_RUN=cpld_datm_gefs.IN\n++ FV3_RUN=cpld_datm_gefs.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_bulk_gefs\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_mx025_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_mx025_cfsr\n++ echo RUN \'|\' datm_mx025_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_mx025_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_mx025_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_mx025_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_mx025_cfsr ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 106\n+ TEST_NR=106\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_mx025_cfsr\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_CFSR - 1/4deg ocean+ice\'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_CFSR - 1/4deg ocean+ice\'\n++ export CNTL_DIR=datm_mx025_cfsr\n++ CNTL_DIR=datm_mx025_cfsr\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export WLCLK=40\n++ WLCLK=40\n++ export DATM_SRC=CFSR\n++ DATM_SRC=CFSR\n++ export FILENAME_BASE=cfsr.\n++ FILENAME_BASE=cfsr.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export TASKS=208\n++ TASKS=208\n++ export TPN=40\n++ TPN=40\n++ export \'atm_petlist_bounds=0 39\'\n++ atm_petlist_bounds=\'0 39\'\n++ export \'med_petlist_bounds=0 39\'\n++ med_petlist_bounds=\'0 39\'\n++ export \'ocn_petlist_bounds=40 159\'\n++ ocn_petlist_bounds=\'40 159\'\n++ export \'ice_petlist_bounds=160 207\'\n++ ice_petlist_bounds=\'160 207\'\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export \'CHLCLIM="seawifs-clim-1997-2010.1440x1080.v20180328.nc"\'\n++ CHLCLIM=\'"seawifs-clim-1997-2010.1440x1080.v20180328.nc"\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_datm_cfsr.IN\n++ FV3_RUN=cpld_datm_cfsr.IN\n+ NODES=5\n+ (( NODES * TPN < TASKS ))\n+ NODES=6\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_mx025_cfsr\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\'RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_mx025_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_mx025_gefs\n++ echo RUN \'|\' datm_mx025_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_mx025_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_mx025_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_mx025_gefs \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_mx025_gefs ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 107\n+ TEST_NR=107\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_mx025_gefs\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_GEFS - 1/4deg ocean+ice\'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_GEFS - 1/4deg ocean+ice\'\n++ export CNTL_DIR=datm_mx025_gefs\n++ CNTL_DIR=datm_mx025_gefs\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/MOM.res_1.nc RESTART/MOM.res_2.nc RESTART/MOM.res_3.nc RESTART/iced.2011-10-02-00000.nc RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export WLCLK=40\n++ WLCLK=40\n++ export TASKS=208\n++ TASKS=208\n++ export TPN=40\n++ TPN=40\n++ export \'atm_petlist_bounds=0 39\'\n++ atm_petlist_bounds=\'0 39\'\n++ export \'med_petlist_bounds=0 39\'\n++ med_petlist_bounds=\'0 39\'\n++ export \'ocn_petlist_bounds=40 159\'\n++ ocn_petlist_bounds=\'40 159\'\n++ export \'ice_petlist_bounds=160 207\'\n++ ice_petlist_bounds=\'160 207\'\n++ export NPROC_ICE=48\n++ NPROC_ICE=48\n++ export OCNRES=025\n++ OCNRES=025\n++ export ICERES=0.25\n++ ICERES=0.25\n++ export NX_GLB=1440\n++ NX_GLB=1440\n++ export NY_GLB=1080\n++ NY_GLB=1080\n++ export MOM_INPUT=MOM_input_template_025\n++ MOM_INPUT=MOM_input_template_025\n++ export MESHOCN_ICE=mesh.mx025.nc\n++ MESHOCN_ICE=mesh.mx025.nc\n++ export CICEGRID=grid_cice_NEMS_mx025.nc\n++ CICEGRID=grid_cice_NEMS_mx025.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ CICEMASK=kmtu_cice_NEMS_mx025.nc\n++ export \'CHLCLIM="seawifs-clim-1997-2010.1440x1080.v20180328.nc"\'\n++ CHLCLIM=\'"seawifs-clim-1997-2010.1440x1080.v20180328.nc"\'\n++ export MOM6_RIVER_RUNOFF=True\n++ MOM6_RIVER_RUNOFF=True\n++ export FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc\n++ export MOM6_RESTART_SETTING=r\n++ MOM6_RESTART_SETTING=r\n++ export FV3_RUN=cpld_datm_gefs.IN\n++ FV3_RUN=cpld_datm_gefs.IN\n+ NODES=5\n+ (( NODES * TPN < TASKS ))\n+ NODES=6\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_mx025_gefs\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_19 == complete\'\n+ continue\n+ read -r line\n+ line=\n+ [[ 0 == 0 ]]\n+ continue\n+ read -r line\n+ line=\'COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n++ echo COMPILE \'|\' DATM=Y S2S=Y DEBUG=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MAKE_OPT=\'DATM=Y S2S=Y DEBUG=Y\'\n++ echo COMPILE \'|\' DATM=Y S2S=Y DEBUG=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo COMPILE \'|\' DATM=Y S2S=Y DEBUG=Y \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ (( COMPILE_NR += 1 ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_compile_task\n+ new_compile=true\n+ cat\n+ echo \' task compile_20\'\n+ echo \' label build_options \'\\\'\'DATM=Y S2S=Y DEBUG=Y\'\\\'\'\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_builds\'\n+ [[ DATM=Y S2S=Y DEBUG=Y =~ WW3=Y ]]\n+ [[ DATM=Y S2S=Y DEBUG=Y =~ REPRO=Y ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ DATM=Y S2S=Y DEBUG=Y =~ WW3=Y ]]\n+ continue\n+ read -r line\n+ line=\'RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 |\'\n+ [[ 168 == 0 ]]\n+ [[ RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | == \\#* ]]\n+ [[ RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | == COMPILE* ]]\n+ [[ RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | == RUN* ]]\n++ echo RUN \'|\' datm_debug_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f2\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ TEST_NAME=datm_debug_cfsr\n++ echo RUN \'|\' datm_debug_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f3\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ MACHINES=\'- wcoss_cray jet.intel\'\n++ echo RUN \'|\' datm_debug_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f4\n+ CB=\' fv3 \'\n++ echo RUN \'|\' datm_debug_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f5\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DEP_RUN=\n++ echo RUN \'|\' datm_debug_cfsr \'|\' - wcoss_cray jet.intel \'|\' fv3 \'|\'\n++ cut \'-d|\' -f6\n++ sed -e \'s/^ *//\' -e \'s/ *$//\'\n+ DATE_35D=\n+ [[ -e tests/datm_debug_cfsr ]]\n+ [[ false == true ]]\n+ [[ - wcoss_cray jet.intel != \'\' ]]\n+ [[ - wcoss_cray jet.intel == -* ]]\n+ [[ - wcoss_cray jet.intel =~ hera.intel ]]\n+ [[ false == true ]]\n+ [[ false == true ]]\n+ RT_SUFFIX=_prod\n+ BL_SUFFIX=_ccpp\n+ [[ false == true ]]\n++ printf %03d 108\n+ TEST_NR=108\n+ source /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/tests/datm_debug_cfsr\n++ export \'TEST_DESCR=DATM-MOM6-CICE-CMEPS_CFSR - debug test \'\n++ TEST_DESCR=\'DATM-MOM6-CICE-CMEPS_CFSR - debug test \'\n++ export CNTL_DIR=datm_debug_cfsr\n++ CNTL_DIR=datm_debug_cfsr\n++ export \'LIST_FILES=RESTART/MOM.res.nc RESTART/iced.2011-10-01-21600.nc RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc\'\n++ LIST_FILES=\'RESTART/MOM.res.nc RESTART/iced.2011-10-01-21600.nc RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc\'\n++ export_datm\n++ export FV3=false\n++ FV3=false\n++ export S2S=false\n++ S2S=false\n++ export DATM=true\n++ DATM=true\n++ export DAYS=1\n++ DAYS=1\n++ export FHMAX=24\n++ FHMAX=24\n++ export WLCLK=30\n++ WLCLK=30\n++ export THRD=1\n++ THRD=1\n++ export FHROT=0\n++ FHROT=0\n++ export WARM_START=.F.\n++ WARM_START=.F.\n++ export DATM_SRC=GEFS\n++ DATM_SRC=GEFS\n++ export FILENAME_BASE=gefs.\n++ FILENAME_BASE=gefs.\n++ export IATM=1536\n++ IATM=1536\n++ export JATM=768\n++ JATM=768\n++ export ATMRES=C96\n++ ATMRES=C96\n++ export OCNRES=100\n++ OCNRES=100\n++ export ICERES=1.00\n++ ICERES=1.00\n++ export WAVRES=1.00\n++ WAVRES=1.00\n++ export NX_GLB=360\n++ NX_GLB=360\n++ export NY_GLB=320\n++ NY_GLB=320\n++ export NEMS_CONFIGURE=nems.configure.datm.IN\n++ NEMS_CONFIGURE=nems.configure.datm.IN\n++ export med_model=nems\n++ med_model=nems\n++ export atm_model=datm\n++ atm_model=datm\n++ export ocn_model=mom6\n++ ocn_model=mom6\n++ export ice_model=cice6\n++ ice_model=cice6\n++ export \'atm_petlist_bounds=0 15\'\n++ atm_petlist_bounds=\'0 15\'\n++ export \'med_petlist_bounds=16 77\'\n++ med_petlist_bounds=\'16 77\'\n++ export \'ocn_petlist_bounds=78 107\'\n++ ocn_petlist_bounds=\'78 107\'\n++ export \'ice_petlist_bounds=108 119\'\n++ ice_petlist_bounds=\'108 119\'\n++ export TASKS=120\n++ TASKS=120\n++ export TPN=40\n++ TPN=40\n++ export NPROC_ICE=12\n++ NPROC_ICE=12\n++ export ENS_NUM=1\n++ ENS_NUM=1\n++ export SYEAR=2011\n++ SYEAR=2011\n++ export SMONTH=10\n++ SMONTH=10\n++ export SDAY=01\n++ SDAY=01\n++ export SHOUR=00\n++ SHOUR=00\n++ export CDATE=2011100100\n++ CDATE=2011100100\n++ export NFHOUT=6\n++ NFHOUT=6\n++ export FDIAG=6\n++ FDIAG=6\n++ export DT_ATMOS=900\n++ DT_ATMOS=900\n++ export DT_CICE=900\n++ DT_CICE=900\n++ export DT_DYNAM_MOM6=1800\n++ DT_DYNAM_MOM6=1800\n++ export DT_THERM_MOM6=3600\n++ DT_THERM_MOM6=3600\n++ export CPL_SLOW=3600\n++ CPL_SLOW=3600\n++ export CPL_FAST=900\n++ CPL_FAST=900\n++ export coupling_interval_slow_sec=3600\n++ coupling_interval_slow_sec=3600\n++ export coupling_interval_fast_sec=900\n++ coupling_interval_fast_sec=900\n++ export RESTART_N=24\n++ RESTART_N=24\n++ export CPLMODE=nems_orig_data\n++ CPLMODE=nems_orig_data\n++ export cap_dbug_flag=0\n++ cap_dbug_flag=0\n++ export use_coldstart=.false.\n++ use_coldstart=.false.\n++ export use_mommesh=.false.\n++ use_mommesh=.false.\n++ export RUNTYPE=startup\n++ RUNTYPE=startup\n++ export flux_convergence=0.0\n++ flux_convergence=0.0\n++ export flux_iteration=2\n++ flux_iteration=2\n++ export flux_scheme=0\n++ flux_scheme=0\n++ export INPUT_NML=input.mom6.nml.IN\n++ INPUT_NML=input.mom6.nml.IN\n++ export MODEL_CONFIGURE=datm_configure.IN\n++ MODEL_CONFIGURE=datm_configure.IN\n++ export FIELD_TABLE=field_table\n++ FIELD_TABLE=field_table\n++ export MOM_INPUT=MOM_input_template_100\n++ MOM_INPUT=MOM_input_template_100\n++ export MOM6_RESTART_SETTING=n\n++ MOM6_RESTART_SETTING=n\n++ export MOM6_RIVER_RUNOFF=False\n++ MOM6_RIVER_RUNOFF=False\n++ export FRUNOFF=\n++ FRUNOFF=\n++ export \'CHLCLIM="seawifs_1998-2006_smoothed_2X.nc"\'\n++ CHLCLIM=\'"seawifs_1998-2006_smoothed_2X.nc"\'\n++ export MOM6_REPRO_LA=False\n++ MOM6_REPRO_LA=False\n++ export MOM6_THERMO_SPAN=False\n++ MOM6_THERMO_SPAN=False\n++ export MOM6_USE_WAVES=False\n++ MOM6_USE_WAVES=False\n++ export MESHOCN_ICE=mesh.mx100.nc\n++ MESHOCN_ICE=mesh.mx100.nc\n++ export CICEGRID=grid_cice_NEMS_mx100.nc\n++ CICEGRID=grid_cice_NEMS_mx100.nc\n++ export CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ CICEMASK=kmtu_cice_NEMS_mx100.nc\n++ export RUNID=unknown\n++ RUNID=unknown\n++ export DUMPFREQ=d\n++ DUMPFREQ=d\n++ export DUMPFREQ_N=1000\n++ DUMPFREQ_N=1000\n++ export USE_RESTART_TIME=.false.\n++ USE_RESTART_TIME=.false.\n++ export RESTART_EXT=.false.\n++ RESTART_EXT=.false.\n++ export FRAZIL_FWSALT=.true.\n++ FRAZIL_FWSALT=.true.\n++ export CICE_HIST_AVG=.true.\n++ CICE_HIST_AVG=.true.\n++ export BL_SUFFIX=\n++ BL_SUFFIX=\n++ export RT_SUFFIX=\n++ RT_SUFFIX=\n++ export DATM_SRC=CFSR\n++ DATM_SRC=CFSR\n++ export FILENAME_BASE=cfsr.\n++ FILENAME_BASE=cfsr.\n++ export IATM=1760\n++ IATM=1760\n++ export JATM=880\n++ JATM=880\n++ export DAYS=0.25\n++ DAYS=0.25\n++ export FHMAX=6\n++ FHMAX=6\n++ export RESTART_N=6\n++ RESTART_N=6\n++ export FV3_RUN=cpld_datm_cfsr.IN\n++ FV3_RUN=cpld_datm_cfsr.IN\n+ NODES=3\n+ (( NODES * TPN < TASKS ))\n+ cat\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ ecflow_create_run_task\n+ cat\n+ echo \' task datm_debug_cfsr\'\n+ echo \' label job_id \'\\\'\'\'\\\'\'\'\n+ echo \' label job_status \'\\\'\'\'\\\'\'\'\n+ echo \' inlimit max_jobs\'\n+ [[ \'\' != \'\' ]]\n+ echo \' trigger compile_20 == complete\'\n+ continue\n+ read -r line\n+ \'[\' \'\' \']\'\n+ [[ false == true ]]\n+ [[ true == true ]]\n+ echo endsuite\n+ ecflow_run\n+ [[ 22097 -gt 49151 ]]\n++ hostname\n+ ECF_HOST=hfe03\n+ set +e\n+ ecflow_client --ping --host=hfe03 --port=22097\n[03:19:47 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n+ not_running=1\n+ [[ 1 -eq 1 ]]\n+ echo \'ecflow_server is NOT running on hfe03:22097\'\necflow_server is NOT running on hfe03:22097\n+ sh /scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh -p 22097\n[03:19:48 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\nTue Feb 23 03:19:48 UTC 2021\n\nUser "20597" attempting to start ecf server on "hfe03" using ECF_PORT "22097" and with:\nECF_HOME : "/home/Brian.Curtis/ecflow_server"\nECF_LOG : "hfe03.22097.ecf.log"\nECF_CHECK : "hfe03.22097.check"\nECF_CHECKOLD : "hfe03.22097.check.b"\nECF_OUT : "/dev/null"\n\nclient version is Ecflow version(5.6.0) boost(1.74.0) compiler(gcc 7.5.0) protocol(JSON cereal 1.3.0) Compiled on Nov 26 2020 15:50:45\nChecking if the server is already running on hfe03 and port 22097\n[03:19:49 23.2.2021] Request( --ping ), Failed to connect to hfe03:22097. After 2 attempts. Is the server running ?\n\n\nBacking up check point and log files\n\nOK starting ecFlow server...\n\nPlacing server into RESTART mode...\n\nTo view server on ecflow_ui - goto Servers/Manage Servers... and enter\nName : \nHost : hfe03\nPort Number : 22097\n\n+ set -e\n+ ECFLOW_RUNNING=true\n+ export ECF_PORT\n+ export ECF_HOST\n+ ecflow_client --load=/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/ecflow_run/regtest_122270.def\n+ ecflow_client --begin=regtest_122270\n+ active_tasks=1\n+ [[ 1 -ne 0 ]]\n+ wait 125566\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 126964\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 131354\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 132722\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 134428\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 136121\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 137708\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 139631\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 141286\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 141880\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 142053\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 142186\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 142314\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 142646\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 142924\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 143048\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 143228\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 143351\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 143501\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 143811\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 144151\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 144328\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 144502\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 144614\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 144747\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 145448\n+ sleep 10\n++ wc -l\n++ grep \'task \'\n++ ecflow_client --get_state /regtest_122270\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 146329\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 146449\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 146622\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 146751\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 146877\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 148719\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 150969\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 151183\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 151384\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 151511\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 151639\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152116\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152355\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152478\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152653\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152775\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 152912\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 153752\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 154086\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 154395\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 155452\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 155619\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 155751\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 159737\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 160756\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 162092\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 163492\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 163687\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=128\n+ echo \'ecflow tasks remaining: 128\'\necflow tasks remaining: 128\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 128 -ne 0 ]]\n+ wait 164267\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=125\n+ echo \'ecflow tasks remaining: 125\'\necflow tasks remaining: 125\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 125 -ne 0 ]]\n+ wait 165762\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=125\n+ echo \'ecflow tasks remaining: 125\'\necflow tasks remaining: 125\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 125 -ne 0 ]]\n+ wait 166040\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=125\n+ echo \'ecflow tasks remaining: 125\'\necflow tasks remaining: 125\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 125 -ne 0 ]]\n+ wait 166484\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=125\n+ echo \'ecflow tasks remaining: 125\'\necflow tasks remaining: 125\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 125 -ne 0 ]]\n+ wait 167372\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=125\n+ echo \'ecflow tasks remaining: 125\'\necflow tasks remaining: 125\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 125 -ne 0 ]]\n+ wait 167668\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 168641\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 172947\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 177288\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 180024\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 182339\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=123\n+ echo \'ecflow tasks remaining: 123\'\necflow tasks remaining: 123\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 123 -ne 0 ]]\n+ wait 184758\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=121\n+ echo \'ecflow tasks remaining: 121\'\necflow tasks remaining: 121\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 121 -ne 0 ]]\n+ wait 187207\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=121\n+ echo \'ecflow tasks remaining: 121\'\necflow tasks remaining: 121\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 121 -ne 0 ]]\n+ wait 188357\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=120\n+ echo \'ecflow tasks remaining: 120\'\necflow tasks remaining: 120\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 120 -ne 0 ]]\n+ wait 188702\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=120\n+ echo \'ecflow tasks remaining: 120\'\necflow tasks remaining: 120\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 120 -ne 0 ]]\n+ wait 188928\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=120\n+ echo \'ecflow tasks remaining: 120\'\necflow tasks remaining: 120\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 120 -ne 0 ]]\n+ wait 189313\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=120\n+ echo \'ecflow tasks remaining: 120\'\necflow tasks remaining: 120\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 120 -ne 0 ]]\n+ wait 189656\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 190439\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 192606\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 193660\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 194075\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 194230\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 194383\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 194861\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=119\n+ echo \'ecflow tasks remaining: 119\'\necflow tasks remaining: 119\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 119 -ne 0 ]]\n+ wait 195430\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=116\n+ echo \'ecflow tasks remaining: 116\'\necflow tasks remaining: 116\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 116 -ne 0 ]]\n+ wait 195612\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=116\n+ echo \'ecflow tasks remaining: 116\'\necflow tasks remaining: 116\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 116 -ne 0 ]]\n+ wait 195795\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=116\n+ echo \'ecflow tasks remaining: 116\'\necflow tasks remaining: 116\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 116 -ne 0 ]]\n+ wait 195925\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=116\n+ echo \'ecflow tasks remaining: 116\'\necflow tasks remaining: 116\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 116 -ne 0 ]]\n+ wait 196050\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=116\n+ echo \'ecflow tasks remaining: 116\'\necflow tasks remaining: 116\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 116 -ne 0 ]]\n+ wait 196483\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=115\n+ echo \'ecflow tasks remaining: 115\'\necflow tasks remaining: 115\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 115 -ne 0 ]]\n+ wait 197173\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 197538\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 198005\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 198136\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 198263\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 199888\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=107\n+ echo \'ecflow tasks remaining: 107\'\necflow tasks remaining: 107\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 107 -ne 0 ]]\n+ wait 202979\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 203191\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 203364\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 203510\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 203627\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 204382\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=104\n+ echo \'ecflow tasks remaining: 104\'\necflow tasks remaining: 104\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 104 -ne 0 ]]\n+ wait 205470\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=100\n+ echo \'ecflow tasks remaining: 100\'\necflow tasks remaining: 100\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 100 -ne 0 ]]\n+ wait 205811\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=100\n+ echo \'ecflow tasks remaining: 100\'\necflow tasks remaining: 100\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 100 -ne 0 ]]\n+ wait 206018\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=100\n+ echo \'ecflow tasks remaining: 100\'\necflow tasks remaining: 100\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 100 -ne 0 ]]\n+ wait 206145\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=100\n+ echo \'ecflow tasks remaining: 100\'\necflow tasks remaining: 100\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 100 -ne 0 ]]\n+ wait 206291\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=99\n+ echo \'ecflow tasks remaining: 99\'\necflow tasks remaining: 99\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 99 -ne 0 ]]\n+ wait 206954\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=97\n+ echo \'ecflow tasks remaining: 97\'\necflow tasks remaining: 97\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 97 -ne 0 ]]\n+ wait 207624\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=96\n+ echo \'ecflow tasks remaining: 96\'\necflow tasks remaining: 96\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 96 -ne 0 ]]\n+ wait 207899\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=96\n+ echo \'ecflow tasks remaining: 96\'\necflow tasks remaining: 96\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 96 -ne 0 ]]\n+ wait 208285\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=96\n+ echo \'ecflow tasks remaining: 96\'\necflow tasks remaining: 96\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 96 -ne 0 ]]\n+ wait 208329\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=96\n+ echo \'ecflow tasks remaining: 96\'\necflow tasks remaining: 96\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 96 -ne 0 ]]\n+ wait 208381\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 208853\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 209274\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 209339\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 209507\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 209549\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=94\n+ echo \'ecflow tasks remaining: 94\'\necflow tasks remaining: 94\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 94 -ne 0 ]]\n+ wait 209970\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 211345\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 212717\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 213014\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 213103\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 213179\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=92\n+ echo \'ecflow tasks remaining: 92\'\necflow tasks remaining: 92\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 92 -ne 0 ]]\n+ wait 213456\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=91\n+ echo \'ecflow tasks remaining: 91\'\necflow tasks remaining: 91\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 91 -ne 0 ]]\n+ wait 217522\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=90\n+ echo \'ecflow tasks remaining: 90\'\necflow tasks remaining: 90\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 90 -ne 0 ]]\n+ wait 220112\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=90\n+ echo \'ecflow tasks remaining: 90\'\necflow tasks remaining: 90\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 90 -ne 0 ]]\n+ wait 222094\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=90\n+ echo \'ecflow tasks remaining: 90\'\necflow tasks remaining: 90\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 90 -ne 0 ]]\n+ wait 224216\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=89\n+ echo \'ecflow tasks remaining: 89\'\necflow tasks remaining: 89\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 89 -ne 0 ]]\n+ wait 226147\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=89\n+ echo \'ecflow tasks remaining: 89\'\necflow tasks remaining: 89\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 89 -ne 0 ]]\n+ wait 228381\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=88\n+ echo \'ecflow tasks remaining: 88\'\necflow tasks remaining: 88\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 88 -ne 0 ]]\n+ wait 228904\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=84\n+ echo \'ecflow tasks remaining: 84\'\necflow tasks remaining: 84\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 84 -ne 0 ]]\n+ wait 229454\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 229624\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 229684\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 229726\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 229969\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 230236\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=82\n+ echo \'ecflow tasks remaining: 82\'\necflow tasks remaining: 82\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 82 -ne 0 ]]\n+ wait 230585\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=80\n+ echo \'ecflow tasks remaining: 80\'\necflow tasks remaining: 80\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 80 -ne 0 ]]\n+ wait 230744\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=80\n+ echo \'ecflow tasks remaining: 80\'\necflow tasks remaining: 80\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 80 -ne 0 ]]\n+ wait 230793\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=80\n+ echo \'ecflow tasks remaining: 80\'\necflow tasks remaining: 80\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 80 -ne 0 ]]\n+ wait 230836\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=80\n+ echo \'ecflow tasks remaining: 80\'\necflow tasks remaining: 80\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 80 -ne 0 ]]\n+ wait 231027\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=78\n+ echo \'ecflow tasks remaining: 78\'\necflow tasks remaining: 78\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 78 -ne 0 ]]\n+ wait 231431\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=77\n+ echo \'ecflow tasks remaining: 77\'\necflow tasks remaining: 77\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 77 -ne 0 ]]\n+ wait 231888\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=74\n+ echo \'ecflow tasks remaining: 74\'\necflow tasks remaining: 74\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 74 -ne 0 ]]\n+ wait 232066\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=74\n+ echo \'ecflow tasks remaining: 74\'\necflow tasks remaining: 74\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 74 -ne 0 ]]\n+ wait 232116\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=74\n+ echo \'ecflow tasks remaining: 74\'\necflow tasks remaining: 74\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 74 -ne 0 ]]\n+ wait 232165\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=74\n+ echo \'ecflow tasks remaining: 74\'\necflow tasks remaining: 74\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 74 -ne 0 ]]\n+ wait 232918\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=74\n+ echo \'ecflow tasks remaining: 74\'\necflow tasks remaining: 74\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 74 -ne 0 ]]\n+ wait 233548\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=73\n+ echo \'ecflow tasks remaining: 73\'\necflow tasks remaining: 73\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 73 -ne 0 ]]\n+ wait 233877\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=71\n+ echo \'ecflow tasks remaining: 71\'\necflow tasks remaining: 71\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 71 -ne 0 ]]\n+ wait 234093\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=70\n+ echo \'ecflow tasks remaining: 70\'\necflow tasks remaining: 70\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 70 -ne 0 ]]\n+ wait 234161\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=70\n+ echo \'ecflow tasks remaining: 70\'\necflow tasks remaining: 70\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 70 -ne 0 ]]\n+ wait 234211\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=70\n+ echo \'ecflow tasks remaining: 70\'\necflow tasks remaining: 70\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 70 -ne 0 ]]\n+ wait 236025\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=70\n+ echo \'ecflow tasks remaining: 70\'\necflow tasks remaining: 70\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 70 -ne 0 ]]\n+ wait 238652\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=70\n+ echo \'ecflow tasks remaining: 70\'\necflow tasks remaining: 70\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 70 -ne 0 ]]\n+ wait 238913\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=68\n+ echo \'ecflow tasks remaining: 68\'\necflow tasks remaining: 68\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 68 -ne 0 ]]\n+ wait 239091\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=68\n+ echo \'ecflow tasks remaining: 68\'\necflow tasks remaining: 68\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 68 -ne 0 ]]\n+ wait 239146\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=68\n+ echo \'ecflow tasks remaining: 68\'\necflow tasks remaining: 68\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 68 -ne 0 ]]\n+ wait 239194\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=68\n+ echo \'ecflow tasks remaining: 68\'\necflow tasks remaining: 68\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 68 -ne 0 ]]\n+ wait 239547\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=66\n+ echo \'ecflow tasks remaining: 66\'\necflow tasks remaining: 66\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 66 -ne 0 ]]\n+ wait 240073\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=65\n+ echo \'ecflow tasks remaining: 65\'\necflow tasks remaining: 65\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 65 -ne 0 ]]\n+ wait 240519\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=63\n+ echo \'ecflow tasks remaining: 63\'\necflow tasks remaining: 63\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 63 -ne 0 ]]\n+ wait 240810\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=63\n+ echo \'ecflow tasks remaining: 63\'\necflow tasks remaining: 63\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 63 -ne 0 ]]\n+ wait 240900\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=61\n+ echo \'ecflow tasks remaining: 61\'\necflow tasks remaining: 61\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 61 -ne 0 ]]\n+ wait 241152\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=61\n+ echo \'ecflow tasks remaining: 61\'\necflow tasks remaining: 61\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 61 -ne 0 ]]\n+ wait 241363\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=61\n+ echo \'ecflow tasks remaining: 61\'\necflow tasks remaining: 61\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 61 -ne 0 ]]\n+ wait 241842\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=58\n+ echo \'ecflow tasks remaining: 58\'\necflow tasks remaining: 58\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 58 -ne 0 ]]\n+ wait 242458\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 242768\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 243003\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 243052\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 244183\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 244707\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=57\n+ echo \'ecflow tasks remaining: 57\'\necflow tasks remaining: 57\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 57 -ne 0 ]]\n+ wait 244964\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=54\n+ echo \'ecflow tasks remaining: 54\'\necflow tasks remaining: 54\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 54 -ne 0 ]]\n+ wait 245194\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=54\n+ echo \'ecflow tasks remaining: 54\'\necflow tasks remaining: 54\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 54 -ne 0 ]]\n+ wait 245248\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=54\n+ echo \'ecflow tasks remaining: 54\'\necflow tasks remaining: 54\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 54 -ne 0 ]]\n+ wait 245312\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=53\n+ echo \'ecflow tasks remaining: 53\'\necflow tasks remaining: 53\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 53 -ne 0 ]]\n+ wait 245752\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=53\n+ echo \'ecflow tasks remaining: 53\'\necflow tasks remaining: 53\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 53 -ne 0 ]]\n+ wait 245897\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=51\n+ echo \'ecflow tasks remaining: 51\'\necflow tasks remaining: 51\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 51 -ne 0 ]]\n+ wait 246152\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=51\n+ echo \'ecflow tasks remaining: 51\'\necflow tasks remaining: 51\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 51 -ne 0 ]]\n+ wait 246390\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 246557\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 246884\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 250897\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 252244\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 253634\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 255314\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 257250\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 259430\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 261946\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 262363\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 262540\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 263352\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 264379\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=50\n+ echo \'ecflow tasks remaining: 50\'\necflow tasks remaining: 50\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 50 -ne 0 ]]\n+ wait 267257\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=36\n+ echo \'ecflow tasks remaining: 36\'\necflow tasks remaining: 36\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\nWill force aborted state for task /regtest_122270/fv3_ccpp_restart_prod\nWill force aborted state for task /regtest_122270/fv3_ccpp_read_inc_prod\nWill force aborted state for task /regtest_122270/fv3_ccpp_iau_prod\n+ [[ 36 -ne 0 ]]\n+ wait 269160\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 270602\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 271512\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 271961\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 272741\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 273398\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 273762\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 274586\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 275216\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 275620\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 276276\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 277161\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 278157\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 278618\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 279169\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 279388\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 279507\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 280547\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 283667\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 284052\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 284406\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 285305\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 285893\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 286866\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 287671\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 287840\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 288016\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 288055\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 288097\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 288311\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 288805\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 289109\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 289718\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 289903\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 289947\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 290266\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 290359\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=33\n+ echo \'ecflow tasks remaining: 33\'\necflow tasks remaining: 33\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 33 -ne 0 ]]\n+ wait 290498\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 290795\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 290836\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 290881\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291181\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291270\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291403\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291623\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291751\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 291793\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 293330\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 299147\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=32\n+ echo \'ecflow tasks remaining: 32\'\necflow tasks remaining: 32\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 32 -ne 0 ]]\n+ wait 301518\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 303417\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 304921\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 306585\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308377\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308436\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308495\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308650\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ wc -l\n++ grep -E \'state:active|state:submitted|state:queued\'\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308689\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=28\n+ echo \'ecflow tasks remaining: 28\'\necflow tasks remaining: 28\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 28 -ne 0 ]]\n+ wait 308744\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 309528\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 309643\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 309720\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 310576\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 310717\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 310766\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 311005\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 311265\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=23\n+ echo \'ecflow tasks remaining: 23\'\necflow tasks remaining: 23\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 23 -ne 0 ]]\n+ wait 439\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 589\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 629\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 682\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 1540\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 1948\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 2026\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 2451\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 2498\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 2934\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=22\n+ echo \'ecflow tasks remaining: 22\'\necflow tasks remaining: 22\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 22 -ne 0 ]]\n+ wait 6271\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=20\n+ echo \'ecflow tasks remaining: 20\'\necflow tasks remaining: 20\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 20 -ne 0 ]]\n+ wait 7269\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 7943\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 10748\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 11521\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 12216\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 13145\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 13244\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 13795\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=19\n+ echo \'ecflow tasks remaining: 19\'\necflow tasks remaining: 19\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 19 -ne 0 ]]\n+ wait 14547\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 15092\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 16170\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 17077\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 17789\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 18334\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 19246\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 20147\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 21217\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 22156\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 22301\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=17\n+ echo \'ecflow tasks remaining: 17\'\necflow tasks remaining: 17\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 17 -ne 0 ]]\n+ wait 22502\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=16\n+ echo \'ecflow tasks remaining: 16\'\necflow tasks remaining: 16\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 16 -ne 0 ]]\n+ wait 22958\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 23209\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 23594\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 23988\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 24793\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 25272\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 25746\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 26466\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 27630\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 31702\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 33234\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 35107\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 36902\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 38782\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 40875\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 41213\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 41486\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 41749\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 42146\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 42189\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 42836\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 43429\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 43543\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 43680\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 43749\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 44160\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=15\n+ echo \'ecflow tasks remaining: 15\'\necflow tasks remaining: 15\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 15 -ne 0 ]]\n+ wait 44445\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=14\n+ echo \'ecflow tasks remaining: 14\'\necflow tasks remaining: 14\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 14 -ne 0 ]]\n+ wait 44568\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=14\n+ echo \'ecflow tasks remaining: 14\'\necflow tasks remaining: 14\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 14 -ne 0 ]]\n+ wait 44691\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=13\n+ echo \'ecflow tasks remaining: 13\'\necflow tasks remaining: 13\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 13 -ne 0 ]]\n+ wait 44907\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=13\n+ echo \'ecflow tasks remaining: 13\'\necflow tasks remaining: 13\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 13 -ne 0 ]]\n+ wait 45148\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=13\n+ echo \'ecflow tasks remaining: 13\'\necflow tasks remaining: 13\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 13 -ne 0 ]]\n+ wait 45327\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=13\n+ echo \'ecflow tasks remaining: 13\'\necflow tasks remaining: 13\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 13 -ne 0 ]]\n+ wait 45652\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=13\n+ echo \'ecflow tasks remaining: 13\'\necflow tasks remaining: 13\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 13 -ne 0 ]]\n+ wait 45908\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 46078\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 46302\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 46454\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 46917\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 49497\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 51019\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 51195\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 51368\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 51545\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 51853\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 52867\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 53009\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 53177\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 53345\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 53496\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 53750\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 54319\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 54648\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 55066\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 55233\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 55387\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 55697\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 56013\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 56154\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 56327\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 56499\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 56661\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 57027\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 57192\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 57340\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 57546\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=12\n+ echo \'ecflow tasks remaining: 12\'\necflow tasks remaining: 12\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 12 -ne 0 ]]\n+ wait 57705\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=11\n+ echo \'ecflow tasks remaining: 11\'\necflow tasks remaining: 11\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 11 -ne 0 ]]\n+ wait 57878\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=11\n+ echo \'ecflow tasks remaining: 11\'\necflow tasks remaining: 11\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 11 -ne 0 ]]\n+ wait 59468\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=11\n+ echo \'ecflow tasks remaining: 11\'\necflow tasks remaining: 11\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 11 -ne 0 ]]\n+ wait 63649\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=11\n+ echo \'ecflow tasks remaining: 11\'\necflow tasks remaining: 11\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 11 -ne 0 ]]\n+ wait 65299\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 67275\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 69364\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 71293\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 73649\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 73826\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 74011\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 74218\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 74386\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 74571\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 75024\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=10\n+ echo \'ecflow tasks remaining: 10\'\necflow tasks remaining: 10\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 10 -ne 0 ]]\n+ wait 75157\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=8\n+ echo \'ecflow tasks remaining: 8\'\necflow tasks remaining: 8\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 8 -ne 0 ]]\n+ wait 75293\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 75528\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 75663\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 75946\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 76510\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 76690\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 76834\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 76998\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 77167\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 77422\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 78629\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 78779\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 78939\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 79099\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 79245\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 79583\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 82870\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 83387\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 83548\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 83691\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 83823\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 84074\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 84411\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 84541\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=6\n+ echo \'ecflow tasks remaining: 6\'\necflow tasks remaining: 6\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 6 -ne 0 ]]\n+ wait 84779\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 85222\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 85362\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 85672\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 86249\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 86549\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 86932\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 87072\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 87218\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 87611\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 88569\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 88691\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 88884\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 89014\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 89154\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 89413\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 89809\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 89932\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 90128\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 90276\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 90448\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 91698\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 96888\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=5\n+ echo \'ecflow tasks remaining: 5\'\necflow tasks remaining: 5\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 5 -ne 0 ]]\n+ wait 99180\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=4\n+ echo \'ecflow tasks remaining: 4\'\necflow tasks remaining: 4\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 4 -ne 0 ]]\n+ wait 101350\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 103534\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 105802\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 106558\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 106858\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 106986\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 107164\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 107289\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 107416\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 108192\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 109128\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 109265\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 109443\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 109589\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 109723\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110011\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110289\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110328\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110425\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110465\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110516\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110836\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110893\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 110944\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 111047\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 111100\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 111157\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 113086\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=3\n+ echo \'ecflow tasks remaining: 3\'\necflow tasks remaining: 3\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 3 -ne 0 ]]\n+ wait 122438\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 133171\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 144126\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 151008\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 151083\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 152193\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 152868\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 152924\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 153024\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 153083\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 153131\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 153680\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 153943\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 154183\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=2\n+ echo \'ecflow tasks remaining: 2\'\necflow tasks remaining: 2\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 2 -ne 0 ]]\n+ wait 154374\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=1\n+ echo \'ecflow tasks remaining: 1\'\necflow tasks remaining: 1\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 1 -ne 0 ]]\n+ wait 154422\n+ sleep 10\n++ ecflow_client --get_state /regtest_122270\n++ grep \'task \'\n++ grep -E \'state:active|state:submitted|state:queued\'\n++ wc -l\n+ active_tasks=0\n+ echo \'ecflow tasks remaining: 0\'\necflow tasks remaining: 0\n+ /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/abort_dep_tasks.py\n+ [[ 0 -ne 0 ]]\n+ sleep 65\n+ ecflow_client --delete=yes /regtest_122270\n+ sleep 5\n+ set +e\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_1.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_10.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_11.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_12.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_13.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_14.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_15.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_16.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_17.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_18.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_19.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_2.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_20.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_3.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_4.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_5.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_6.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_7.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_8.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/compile_9.log\n+ cat /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_017_fv3_ccpp_gfdlmprad_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_018_fv3_ccpp_gfdlmprad_atmwav_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_019_fv3_ccpp_wrtGauss_nemsio_c768_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_020_fv3_ccpp_multigases_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_021_fv3_ccpp_control_32bit_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_022_fv3_ccpp_stretched_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_023_fv3_ccpp_stretched_nest_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_024_fv3_ccpp_regional_control_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_025_fv3_ccpp_regional_restart_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_026_fv3_ccpp_regional_quilt_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_027_fv3_ccpp_regional_quilt_netcdf_parallel_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_028_fv3_ccpp_gfdlmp_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_029_fv3_ccpp_gfdlmprad_gwd_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_030_fv3_ccpp_gfdlmprad_noahmp_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_031_fv3_ccpp_csawmg_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_032_fv3_ccpp_satmedmf_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_033_fv3_ccpp_satmedmfq_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_034_fv3_ccpp_gfdlmp_32bit_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_035_fv3_ccpp_gfdlmprad_32bit_post_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_036_fv3_ccpp_cpt_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_037_fv3_ccpp_gsd_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_038_fv3_ccpp_rap_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_039_fv3_ccpp_hrrr_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_040_fv3_ccpp_thompson_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_041_fv3_ccpp_thompson_no_aero_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_042_fv3_ccpp_rrfs_v1beta_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_043_fv3_ccpp_gfs_v15p2_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_044_fv3_ccpp_gfs_v16_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_045_fv3_ccpp_gfs_v16_restart_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_046_fv3_ccpp_gfs_v16_stochy_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_047_fv3_ccpp_gfs_v15p2_RRTMGP_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_048_fv3_ccpp_gfs_v16_RRTMGP_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_049_fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_050_fv3_ccpp_gfsv16_csawmg_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_051_fv3_ccpp_gfsv16_csawmgt_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_052_fv3_ccpp_gocart_clm_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_053_fv3_ccpp_gfs_v16_flake_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_054_fv3_ccpp_HAFS_v0_hwrf_thompson_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_055_fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_056_fv3_ccpp_gfsv16_ugwpv1_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_057_fv3_ccpp_gfsv16_ugwpv1_warmstart_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_058_fv3_ccpp_gfs_v15p2_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_059_fv3_ccpp_gfs_v16_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_060_fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_061_fv3_ccpp_gfs_v16_RRTMGP_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_062_fv3_ccpp_regional_control_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_063_fv3_ccpp_control_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_064_fv3_ccpp_stretched_nest_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_065_fv3_ccpp_gsd_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_066_fv3_ccpp_gsd_diag3d_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_067_fv3_ccpp_thompson_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_068_fv3_ccpp_thompson_no_aero_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_069_fv3_ccpp_rrfs_v1beta_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_070_fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_071_fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_072_fv3_ccpp_gfsv16_ugwpv1_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_073_cpld_control_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_074_cpld_restart_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_075_cpld_controlfrac_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_076_cpld_restartfrac_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_077_cpld_2threads_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_078_cpld_decomp_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_079_cpld_satmedmf_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_080_cpld_ca_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_081_cpld_control_c192_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_082_cpld_restart_c192_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_083_cpld_controlfrac_c192_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_084_cpld_restartfrac_c192_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_085_cpld_control_c384_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_086_cpld_restart_c384_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_087_cpld_controlfrac_c384_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_088_cpld_restartfrac_c384_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_089_cpld_bmark_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_090_cpld_restart_bmark_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_091_cpld_bmarkfrac_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_092_cpld_restart_bmarkfrac_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_093_cpld_bmarkfrac_v16_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_094_cpld_restart_bmarkfrac_v16_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_095_cpld_bmark_wave_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_096_cpld_bmarkfrac_wave_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_097_cpld_bmarkfrac_wave_v16_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_098_cpld_control_wave_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_099_cpld_debug_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_100_cpld_debugfrac_prod.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_101_datm_control_cfsr.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_102_datm_restart_cfsr.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_103_datm_control_gefs.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_104_datm_bulk_cfsr.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_105_datm_bulk_gefs.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_106_datm_mx025_cfsr.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_107_datm_mx025_gefs.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/log_hera.intel/rt_108_datm_debug_cfsr.log\n+ [[ -e fail_test ]]\n+ echo \'FAILED TESTS: \'\nFAILED TESTS: \n+ echo \'FAILED TESTS: \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_2threads 003 failed in run_test failed \'\nTest fv3_ccpp_2threads 003 failed in run_test failed \n+ echo \'Test fv3_ccpp_2threads 003 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_control 001 failed in run_test failed \'\nTest fv3_ccpp_control 001 failed in run_test failed \n+ echo \'Test fv3_ccpp_control 001 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGauss_netcdf_esmf 006 failed in run_test failed \'\nTest fv3_ccpp_wrtGauss_netcdf_esmf 006 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGauss_netcdf_esmf 006 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGauss_netcdf_parallel 008 failed in run_test failed \'\nTest fv3_ccpp_wrtGauss_netcdf_parallel 008 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGauss_netcdf_parallel 008 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_decomp 002 failed in run_test failed \'\nTest fv3_ccpp_decomp 002 failed in run_test failed \n+ echo \'Test fv3_ccpp_decomp 002 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGauss_netcdf 007 failed in run_test failed \'\nTest fv3_ccpp_wrtGauss_netcdf 007 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGauss_netcdf 007 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGlatlon_netcdf 009 failed in run_test failed \'\nTest fv3_ccpp_wrtGlatlon_netcdf 009 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGlatlon_netcdf 009 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGauss_nemsio 010 failed in run_test failed \'\nTest fv3_ccpp_wrtGauss_nemsio 010 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGauss_nemsio 010 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_wrtGauss_nemsio_c192 011 failed in run_test failed \'\nTest fv3_ccpp_wrtGauss_nemsio_c192 011 failed in run_test failed \n+ echo \'Test fv3_ccpp_wrtGauss_nemsio_c192 011 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_stochy 012 failed in run_test failed \'\nTest fv3_ccpp_stochy 012 failed in run_test failed \n+ echo \'Test fv3_ccpp_stochy 012 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_ca 013 failed in run_test failed \'\nTest fv3_ccpp_ca 013 failed in run_test failed \n+ echo \'Test fv3_ccpp_ca 013 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_lndp 014 failed in run_test failed \'\nTest fv3_ccpp_lndp 014 failed in run_test failed \n+ echo \'Test fv3_ccpp_lndp 014 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo \'Test fv3_ccpp_lheatstrg 016 failed in run_test failed \'\nTest fv3_ccpp_lheatstrg 016 failed in run_test failed \n+ echo \'Test fv3_ccpp_lheatstrg 016 failed in run_test failed \'\n+ read -r failed_test_name\n+ echo\n\n+ echo REGRESSION TEST FAILED\nREGRESSION TEST FAILED\n+ echo\n+ echo REGRESSION TEST FAILED\n+ date\n++ printf \'%02dh:%02dm:%02ds\\n\' 1 19 32\n+ elapsed_time=01h:19m:32s\n+ echo \'Elapsed time: 01h:19m:32s. Have a nice day!\'\n+ echo \'Elapsed time: 01h:19m:32s. Have a nice day!\'\nElapsed time: 01h:19m:32s. Have a nice day!\n+ echo \'rt.sh finished\'\nrt.sh finished\n+ cleanup\n+ rm -rf /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/lock\n+ [[ true == true ]]\n+ ecflow_stop\n+ [[ true == true ]]\n+ set +e\n++ ecflow_client --get\n++ grep \'^suite\'\n+ SUITES=\n+ echo SUITES=\nSUITES=\n+ \'[\' -z \'\' \']\'\n+ ecflow_client --halt=yes\n+ ecflow_client --check_pt\n+ ecflow_client --terminate=yes\n+ trap 0\n+ exit\n' -CRITICAL:JOB/RUNFUNCTION:STDERR: None -INFO:JOB/RUNFUNCTION:Attempting to run callback: move_rt_logs -INFO:JOB/MOVE_RT_LOGS:Attempting to run: git add tests/RegressionTests_hera.intel.log -INFO:JOB/MOVE_RT_LOGS:Finished command git add tests/RegressionTests_hera.intel.log -INFO:JOB/MOVE_RT_LOGS:Attempting to run: git commit -m "Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log" -INFO:JOB/MOVE_RT_LOGS:Finished command git commit -m "Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log" -INFO:JOB/MOVE_RT_LOGS:Attempting to run: git pull --no-edit origin feature/rt-automation -INFO:JOB/MOVE_RT_LOGS:Finished command git pull --no-edit origin feature/rt-automation -INFO:JOB/MOVE_RT_LOGS:Attempting to run: sleep 10 -INFO:JOB/MOVE_RT_LOGS:Finished command sleep 10 -INFO:JOB/MOVE_RT_LOGS:Attempting to run: git push origin feature/rt-automation -INFO:JOB/MOVE_RT_LOGS:Finished command git push origin feature/rt-automation -INFO:JOB/RUNFUNCTION:Finished callback move_rt_logs -INFO:MAIN:Calling push_rtauto_log -INFO:JOB/PUSH_RTAUTO_LOG:Running "cp /scratch1/NCEPDEV/nems/Brian.Curtis/git2/BrianCurtis-NOAA/ufs-weather-model-rt/tests/auto/rt_auto_20210223031812.log /scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model/tests/auto/" in location "/scratch1/NCEPDEV/nems/Brian.Curtis/test/565189876/20210223031815/ufs-weather-model" From 3405c9dbd2dae0a4627fc937b642f0aa35fb4753 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 24 Feb 2021 01:36:46 +0000 Subject: [PATCH 105/117] * get rid of extra commented out code --- tests/auto/rt_auto.py | 52 ++----------------------------------------- 1 file changed, 2 insertions(+), 50 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 9c6058a7e3..a8510b53d1 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -166,21 +166,6 @@ def remove_pr_dir(self): rm_command = [f'rm -rf {pr_dir_str}', os.getcwd()] logger.info(f'Running "{rm_command}"') self.run_commands(rm_command) - # try: - # output = subprocess.Popen(rm_command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - # out, err = output.communicate() - # out = [] if not out else out.decode('utf8').split('\n') - # err = [] if not err else err.decode('utf8').split('\n') - # except Exception as e: - # logger.warning('Removal of directory at end failed.') - # logger.warning(e) - # [logger.warning(f'stdout: {item}') for item in out if not None] - # [logger.warning(f'stderr: {eitem}') for eitem in err if not None] - # assert(e) - # else: - # logger.info(f'Finished running: {rm_command}') - # [logger.debug(f'stdout: {item}') for item in out if not None] - # [logger.debug(f'stderr: {eitem}') for eitem in err if not None] def clone_pr_repo(self): ''' clone the GitHub pull request repo, via command line ''' @@ -198,25 +183,8 @@ def clone_pr_repo(self): [f'git clone -b {self.branch} {git_url}', repo_dir_str], [f'git submodule update --init --recursive', f'{repo_dir_str}/{repo_name}'] ] + self.run_commands(create_repo_commands) - # for command, in_cwd in create_repo_commands: - # logger.info(f'Running "{command}" in location "{in_cwd}"') - # try: - # output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - # out, err = output.communicate() - # out = [] if not out else out.decode('utf8').split('\n') - # err = [] if not err else err.decode('utf8').split('\n') - # except Exception as e: - # self.add_pr_label() - # logger.critical(e) - # [logger.critical(f'stdout: {item}') for item in out if not None] - # [logger.critical(f'stderr: {eitem}') for eitem in err if not None] - # - # assert(e) - # else: - # logger.info(f'Finished running: {command}') - # [logger.info(f'stdout: {item}') for item in out if not None] - # [logger.info(f'stderr: {eitem}') for eitem in err if not None] logger.info('Finished repo clone') self.pr_repo_loc = repo_dir_str+"/"+repo_name @@ -276,23 +244,7 @@ def move_rt_logs(self): [f'git push origin {self.branch}', self.pr_repo_loc] ] self.run_commands(move_rt_commands) - # for command, in_cwd in move_rt_commands: - # try: - # logger.info(f'Attempting to run: {command}') - # output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - # out, err = output.communicate() - # out = [] if not out else out.decode('utf8').split('\n') - # err = [] if not err else err.decode('utf8').split('\n') - # except Exception as e: - # self.add_pr_label() - # logger.critical(e) - # [logger.critical(f'stdout: {item}') for item in out if not None] - # [logger.critical(f'stderr: {eitem}') for eitem in err if not None] - # assert(e) - # else: - # logger.info(f'Finished command {command}') - # [logger.debug(f'stdout: {item}') for item in out if not None] - # [logger.debug(f'stderr: {eitem}') for eitem in err if not None] + else: logger.critical('Could not find RT log') raise FileNotFoundError('Could not find RT log') From 68a5def276e0bf2c6c364777114cf4026bb2db3a Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 23 Feb 2021 22:19:54 -0500 Subject: [PATCH 106/117] Auto: Added Updated RT Log file: tests/RegressionTests_gaea.intel.log --- tests/RegressionTests_gaea.intel.log | 5026 +++++++++++++++++++++++++- 1 file changed, 5022 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 4eac847a36..fca316c79a 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Mon Feb 22 15:19:15 EST 2021 +Tue Feb 23 20:56:05 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_42675/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,6 +70,5024 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_decomp_prod +Checking test 002 fv3_ccpp_decomp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 002 fv3_ccpp_decomp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 003 fv3_ccpp_2threads PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 004 fv3_ccpp_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_read_inc_prod +Checking test 005 fv3_ccpp_read_inc results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 005 fv3_ccpp_read_inc PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 007 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_stochy PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_ca PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 015 fv3_ccpp_iau PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_lheatstrg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_multigases_prod +Checking test 017 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 017 fv3_ccpp_multigases PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_control_32bit_prod +Checking test 018 fv3_ccpp_control_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 018 fv3_ccpp_control_32bit PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_stretched_prod +Checking test 019 fv3_ccpp_stretched results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 019 fv3_ccpp_stretched PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_stretched_nest_prod +Checking test 020 fv3_ccpp_stretched_nest results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.nest02.tile7.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 020 fv3_ccpp_stretched_nest PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_regional_control_prod +Checking test 021 fv3_ccpp_regional_control results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 021 fv3_ccpp_regional_control PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_regional_restart_prod +Checking test 022 fv3_ccpp_regional_restart results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK +Test 022 fv3_ccpp_regional_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_regional_quilt_prod +Checking test 023 fv3_ccpp_regional_quilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 023 fv3_ccpp_regional_quilt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK +Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 025 fv3_ccpp_gfdlmp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 026 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 027 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 028 fv3_ccpp_csawmg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 029 fv3_ccpp_satmedmf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 030 fv3_ccpp_satmedmfq PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 031 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 033 fv3_ccpp_cpt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 034 fv3_ccpp_gsd PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_rap_prod +Checking test 035 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 035 fv3_ccpp_rap PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_hrrr_prod +Checking test 036 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 036 fv3_ccpp_hrrr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_thompson_prod +Checking test 037 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 037 fv3_ccpp_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_thompson_no_aero_prod +Checking test 038 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 038 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 039 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v15p2_prod +Checking test 040 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 040 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v16_prod +Checking test 041 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 041 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v16_restart_prod +Checking test 042 fv3_ccpp_gfs_v16_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 042 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v16_stochy_prod +Checking test 043 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 043 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfsv16_csawmg_prod +Checking test 047 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 047 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gocart_clm_prod +Checking test 049 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 049 fv3_ccpp_gocart_clm PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v16_flake_prod +Checking test 050 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 055 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v16_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 056 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_regional_control_debug_prod +Checking test 059 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 059 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_control_debug_prod +Checking test 060 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 060 fv3_ccpp_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_stretched_nest_debug_prod +Checking test 061 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 061 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gsd_debug_prod +Checking test 062 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 062 fv3_ccpp_gsd_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 063 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_thompson_debug_prod +Checking test 064 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 064 fv3_ccpp_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 065 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 066 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_control_prod +Checking test 070 cpld_control results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 070 cpld_control PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_restart_prod +Checking test 071 cpld_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 071 cpld_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_controlfrac_prod +Checking test 072 cpld_controlfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 072 cpld_controlfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_restartfrac_prod +Checking test 073 cpld_restartfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 073 cpld_restartfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_2threads_prod +Checking test 074 cpld_2threads results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 074 cpld_2threads PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_decomp_prod +Checking test 075 cpld_decomp results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 075 cpld_decomp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_satmedmf_prod +Checking test 076 cpld_satmedmf results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 076 cpld_satmedmf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_ca_prod +Checking test 077 cpld_ca results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 077 cpld_ca PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_control_c192_prod +Checking test 078 cpld_control_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 078 cpld_control_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_restart_c192_prod +Checking test 079 cpld_restart_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 079 cpld_restart_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_controlfrac_c192_prod +Checking test 080 cpld_controlfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 080 cpld_controlfrac_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_restartfrac_c192_prod +Checking test 081 cpld_restartfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 081 cpld_restartfrac_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_control_c384_prod +Checking test 082 cpld_control_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 082 cpld_control_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_restart_c384_prod +Checking test 083 cpld_restart_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 083 cpld_restart_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_controlfrac_c384_prod +Checking test 084 cpld_controlfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 084 cpld_controlfrac_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_restartfrac_c384_prod +Checking test 085 cpld_restartfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 085 cpld_restartfrac_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_bmark_prod +Checking test 086 cpld_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 086 cpld_bmark PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_restart_bmark_prod +Checking test 087 cpld_restart_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 087 cpld_restart_bmark PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_bmarkfrac_prod +Checking test 088 cpld_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 088 cpld_bmarkfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_restart_bmarkfrac_prod +Checking test 089 cpld_restart_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 089 cpld_restart_bmarkfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_debug_prod +Checking test 090 cpld_debug results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 090 cpld_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/cpld_debugfrac_prod +Checking test 091 cpld_debugfrac results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 091 cpld_debugfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/datm_control_cfsr +Checking test 092 datm_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 092 datm_control_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/datm_restart_cfsr +Checking test 093 datm_restart_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 093 datm_restart_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/datm_control_gefs +Checking test 094 datm_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 094 datm_control_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/datm_bulk_cfsr +Checking test 095 datm_bulk_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 095 datm_bulk_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/datm_bulk_gefs +Checking test 096 datm_bulk_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 096 datm_bulk_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/datm_mx025_cfsr +Checking test 097 datm_mx025_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 097 datm_mx025_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/datm_mx025_gefs +Checking test 098 datm_mx025_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 098 datm_mx025_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39525/datm_debug_cfsr +Checking test 099 datm_debug_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-01-21600.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK +Test 099 datm_debug_cfsr PASS + + REGRESSION TEST WAS SUCCESSFUL -Mon Feb 22 15:36:32 EST 2021 -Elapsed time: 00h:17m:18s. Have a nice day! +Tue Feb 23 22:19:42 EST 2021 +Elapsed time: 01h:23m:37s. Have a nice day! From 1703e15a54a944aa21a7087a48b6f17af0db3dae Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 23 Feb 2021 21:49:09 -0600 Subject: [PATCH 107/117] Auto: Added Updated RT Log file: tests/RegressionTests_orion.intel.log --- tests/RegressionTests_orion.intel.log | 5518 ++++++++++++++++++++++++- 1 file changed, 5514 insertions(+), 4 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 5824cb43f3..0580c4d235 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Feb 22 13:57:01 CST 2021 +Tue Feb 23 19:54:14 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_317245/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,6 +70,5516 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_decomp_prod +Checking test 002 fv3_ccpp_decomp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 002 fv3_ccpp_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 003 fv3_ccpp_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 004 fv3_ccpp_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_read_inc_prod +Checking test 005 fv3_ccpp_read_inc results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 005 fv3_ccpp_read_inc PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 007 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_stochy PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_ca PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 015 fv3_ccpp_iau PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_lheatstrg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfdlmprad_prod +Checking test 017 fv3_ccpp_gfdlmprad results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 017 fv3_ccpp_gfdlmprad PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 018 fv3_ccpp_gfdlmprad_atmwav PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_wrtGauss_nemsio_c768_prod +Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf006.nemsio .........OK + Comparing dynf006.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing out_grd.glo_10m .........OK + Comparing out_grd.ant_9km .........OK + Comparing out_grd.aoc_9km .........OK +Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_multigases_prod +Checking test 020 fv3_ccpp_multigases results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 020 fv3_ccpp_multigases PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_control_32bit_prod +Checking test 021 fv3_ccpp_control_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 021 fv3_ccpp_control_32bit PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_stretched_prod +Checking test 022 fv3_ccpp_stretched results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 022 fv3_ccpp_stretched PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_stretched_nest_prod +Checking test 023 fv3_ccpp_stretched_nest results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.nest02.tile7.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 023 fv3_ccpp_stretched_nest PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_regional_control_prod +Checking test 024 fv3_ccpp_regional_control results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 024 fv3_ccpp_regional_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_regional_restart_prod +Checking test 025 fv3_ccpp_regional_restart results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK +Test 025 fv3_ccpp_regional_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_regional_quilt_prod +Checking test 026 fv3_ccpp_regional_quilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 026 fv3_ccpp_regional_quilt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 028 fv3_ccpp_gfdlmp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 029 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 031 fv3_ccpp_csawmg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 032 fv3_ccpp_satmedmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 033 fv3_ccpp_satmedmfq PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 034 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 036 fv3_ccpp_cpt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 037 fv3_ccpp_gsd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_rap_prod +Checking test 038 fv3_ccpp_rap results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 038 fv3_ccpp_rap PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_hrrr_prod +Checking test 039 fv3_ccpp_hrrr results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 039 fv3_ccpp_hrrr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_thompson_prod +Checking test 040 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 040 fv3_ccpp_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_thompson_no_aero_prod +Checking test 041 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 041 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_rrfs_v1beta_prod +Checking test 042 fv3_ccpp_rrfs_v1beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 042 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v15p2_prod +Checking test 043 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 043 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v16_prod +Checking test 044 fv3_ccpp_gfs_v16 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 044 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v16_restart_prod +Checking test 045 fv3_ccpp_gfs_v16_restart results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v16_stochy_prod +Checking test 046 fv3_ccpp_gfs_v16_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfsv16_csawmg_prod +Checking test 050 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 051 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gocart_clm_prod +Checking test 052 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 052 fv3_ccpp_gocart_clm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v16_flake_prod +Checking test 053 fv3_ccpp_gfs_v16_flake results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 053 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 058 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 059 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_regional_control_debug_prod +Checking test 062 fv3_ccpp_regional_control_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 062 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_control_debug_prod +Checking test 063 fv3_ccpp_control_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK +Test 063 fv3_ccpp_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_stretched_nest_debug_prod +Checking test 064 fv3_ccpp_stretched_nest_debug results .... + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 064 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gsd_debug_prod +Checking test 065 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 065 fv3_ccpp_gsd_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 066 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_thompson_debug_prod +Checking test 067 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 067 fv3_ccpp_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 068 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 069 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_control_prod +Checking test 073 cpld_control results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 073 cpld_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_restart_prod +Checking test 074 cpld_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 074 cpld_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_controlfrac_prod +Checking test 075 cpld_controlfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 075 cpld_controlfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_restartfrac_prod +Checking test 076 cpld_restartfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 076 cpld_restartfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_2threads_prod +Checking test 077 cpld_2threads results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 077 cpld_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_decomp_prod +Checking test 078 cpld_decomp results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 078 cpld_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_satmedmf_prod +Checking test 079 cpld_satmedmf results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 079 cpld_satmedmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_ca_prod +Checking test 080 cpld_ca results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 080 cpld_ca PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_control_c192_prod +Checking test 081 cpld_control_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 081 cpld_control_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_restart_c192_prod +Checking test 082 cpld_restart_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 082 cpld_restart_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_controlfrac_c192_prod +Checking test 083 cpld_controlfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 083 cpld_controlfrac_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_restartfrac_c192_prod +Checking test 084 cpld_restartfrac_c192 results .... + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK +Test 084 cpld_restartfrac_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_control_c384_prod +Checking test 085 cpld_control_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 085 cpld_control_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_restart_c384_prod +Checking test 086 cpld_restart_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 086 cpld_restart_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_controlfrac_c384_prod +Checking test 087 cpld_controlfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 087 cpld_controlfrac_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_restartfrac_c384_prod +Checking test 088 cpld_restartfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 088 cpld_restartfrac_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_bmark_prod +Checking test 089 cpld_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 089 cpld_bmark PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_restart_bmark_prod +Checking test 090 cpld_restart_bmark results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 090 cpld_restart_bmark PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_bmarkfrac_prod +Checking test 091 cpld_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 091 cpld_bmarkfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_restart_bmarkfrac_prod +Checking test 092 cpld_restart_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 092 cpld_restart_bmarkfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_bmarkfrac_v16_prod +Checking test 093 cpld_bmarkfrac_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 093 cpld_bmarkfrac_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_restart_bmarkfrac_v16_prod +Checking test 094 cpld_restart_bmarkfrac_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 094 cpld_restart_bmarkfrac_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_bmark_wave_prod +Checking test 095 cpld_bmark_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 095 cpld_bmark_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_bmarkfrac_wave_prod +Checking test 096 cpld_bmarkfrac_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 096 cpld_bmarkfrac_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_bmarkfrac_wave_v16_prod +Checking test 097 cpld_bmarkfrac_wave_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 097 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_control_wave_prod +Checking test 098 cpld_control_wave results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 098 cpld_control_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_debug_prod +Checking test 099 cpld_debug results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 099 cpld_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/cpld_debugfrac_prod +Checking test 100 cpld_debugfrac results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 100 cpld_debugfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/datm_control_cfsr +Checking test 101 datm_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 101 datm_control_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/datm_restart_cfsr +Checking test 102 datm_restart_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 102 datm_restart_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/datm_control_gefs +Checking test 103 datm_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 103 datm_control_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/datm_bulk_cfsr +Checking test 104 datm_bulk_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 104 datm_bulk_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/datm_bulk_gefs +Checking test 105 datm_bulk_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 105 datm_bulk_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/datm_mx025_cfsr +Checking test 106 datm_mx025_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 106 datm_mx025_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/datm_mx025_gefs +Checking test 107 datm_mx025_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 107 datm_mx025_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_85825/datm_debug_cfsr +Checking test 108 datm_debug_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-01-21600.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK +Test 108 datm_debug_cfsr PASS + + REGRESSION TEST WAS SUCCESSFUL -Mon Feb 22 14:32:58 CST 2021 -Elapsed time: 00h:35m:58s. Have a nice day! +Tue Feb 23 21:49:03 CST 2021 +Elapsed time: 01h:54m:50s. Have a nice day! From 6efe04c143eb3cacfbed85be9046e199dca815fb Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 24 Feb 2021 07:06:56 +0000 Subject: [PATCH 108/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 1293 +++++++++++++++++++++----- 1 file changed, 1078 insertions(+), 215 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 3b402aa9a0..65149376a4 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,939 @@ -Tue Feb 23 03:19:42 UTC 2021 +Wed Feb 24 03:33:23 UTC 2021 Start Regression test +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 001 fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_decomp_prod +Checking test 002 fv3_ccpp_decomp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 002 fv3_ccpp_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 003 fv3_ccpp_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 004 fv3_ccpp_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_read_inc_prod +Checking test 005 fv3_ccpp_read_inc results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 005 fv3_ccpp_read_inc PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 007 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_stochy PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_ca PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_lndp_prod +Checking test 014 fv3_ccpp_lndp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_lndp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_iau_prod +Checking test 015 fv3_ccpp_iau results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 015 fv3_ccpp_iau PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_lheatstrg_prod +Checking test 016 fv3_ccpp_lheatstrg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_lheatstrg PASS + + baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -52,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -101,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -224,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -292,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -348,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -415,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -426,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -435,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -446,18 +1376,18 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -505,7 +1435,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -553,7 +1483,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -601,7 +1531,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -649,7 +1579,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -697,7 +1627,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,7 +1675,7 @@ Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -793,7 +1723,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -845,7 +1775,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -899,7 +1829,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -991,7 +1921,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1059,7 +1989,7 @@ Test 038 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1127,7 +2057,7 @@ Test 039 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1195,7 +2125,7 @@ Test 040 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1263,7 +2193,7 @@ Test 041 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1331,7 +2261,7 @@ Test 042 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1399,7 +2329,7 @@ Test 043 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,7 +2409,7 @@ Test 044 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -1529,7 +2459,7 @@ Test 045 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1597,7 +2527,7 @@ Test 046 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1665,7 +2595,7 @@ Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1733,7 +2663,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1795,7 +2725,7 @@ Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfsv16_csawmg_prod Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1843,7 +2773,7 @@ Test 050 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfsv16_csawmgt_prod Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1891,7 +2821,7 @@ Test 051 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gocart_clm_prod Checking test 052 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1939,7 +2869,7 @@ Test 052 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_flake_prod Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2007,7 +2937,7 @@ Test 053 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2075,7 +3005,7 @@ Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2093,7 +3023,7 @@ Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2155,7 +3085,7 @@ Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2217,7 +3147,7 @@ Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v15p2_debug_prod Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2285,7 +3215,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2353,7 +3283,7 @@ Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2421,7 +3351,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2489,7 +3419,7 @@ Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_regional_control_debug_prod Checking test 062 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2500,7 +3430,7 @@ Test 062 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_control_debug_prod Checking test 063 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2530,7 +3460,7 @@ Test 063 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_stretched_nest_debug_prod Checking test 064 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -2550,7 +3480,7 @@ Test 064 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gsd_debug_prod Checking test 065 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2618,7 +3548,7 @@ Test 065 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gsd_diag3d_debug_prod Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2686,7 +3616,7 @@ Test 066 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_thompson_debug_prod Checking test 067 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2754,7 +3684,7 @@ Test 067 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_thompson_no_aero_debug_prod Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2822,7 +3752,7 @@ Test 068 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2890,7 +3820,7 @@ Test 069 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2958,7 +3888,7 @@ Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2976,7 +3906,7 @@ Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3038,7 +3968,7 @@ Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_control_prod Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3091,7 +4021,7 @@ Test 073 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_prod Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3144,7 +4074,7 @@ Test 074 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_controlfrac_prod Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3197,7 +4127,7 @@ Test 075 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restartfrac_prod Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3250,7 +4180,7 @@ Test 076 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_2threads_prod Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3303,7 +4233,7 @@ Test 077 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_decomp_prod Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3356,7 +4286,7 @@ Test 078 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_satmedmf_prod Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3409,7 +4339,7 @@ Test 079 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_ca_prod Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3462,7 +4392,7 @@ Test 080 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_control_c192_prod Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3515,7 +4445,7 @@ Test 081 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_c192_prod Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3568,7 +4498,7 @@ Test 082 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_controlfrac_c192_prod Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3621,7 +4551,7 @@ Test 083 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restartfrac_c192_prod Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3674,7 +4604,7 @@ Test 084 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_control_c384_prod Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3730,7 +4660,7 @@ Test 085 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_c384_prod Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3786,119 +4716,63 @@ Test 086 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_controlfrac_c384_prod Checking test 087 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 087 cpld_controlfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restartfrac_c384_prod -Checking test 088 cpld_restartfrac_c384 results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 088 cpld_restartfrac_c384 PASS + Comparing phyf024.tile1.nc ............MISSING file + Comparing phyf024.tile2.nc ............MISSING file + Comparing phyf024.tile3.nc ............MISSING file + Comparing phyf024.tile4.nc ............MISSING file + Comparing phyf024.tile5.nc ............MISSING file + Comparing phyf024.tile6.nc ............MISSING file + Comparing dynf024.tile1.nc ............MISSING file + Comparing dynf024.tile2.nc ............MISSING file + Comparing dynf024.tile3.nc ............MISSING file + Comparing dynf024.tile4.nc ............MISSING file + Comparing dynf024.tile5.nc ............MISSING file + Comparing dynf024.tile6.nc ............MISSING file + Comparing RESTART/coupler.res ............MISSING file + Comparing RESTART/fv_core.res.nc ............MISSING file + Comparing RESTART/fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/phy_data.tile1.nc ............MISSING file + Comparing RESTART/phy_data.tile2.nc ............MISSING file + Comparing RESTART/phy_data.tile3.nc ............MISSING file + Comparing RESTART/phy_data.tile4.nc ............MISSING file + Comparing RESTART/phy_data.tile5.nc ............MISSING file + Comparing RESTART/phy_data.tile6.nc ............MISSING file + Comparing RESTART/sfc_data.tile1.nc ............MISSING file + Comparing RESTART/sfc_data.tile2.nc ............MISSING file + Comparing RESTART/sfc_data.tile3.nc ............MISSING file + Comparing RESTART/sfc_data.tile4.nc ............MISSING file + Comparing RESTART/sfc_data.tile5.nc ............MISSING file + Comparing RESTART/sfc_data.tile6.nc ............MISSING file + Comparing RESTART/MOM.res.nc ............MISSING file + Comparing RESTART/MOM.res_1.nc ............MISSING file + Comparing RESTART/MOM.res_2.nc ............MISSING file + Comparing RESTART/MOM.res_3.nc ............MISSING file + Comparing RESTART/iced.2016-10-04-00000.nc ............MISSING file + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc ............MISSING file +Test 087 cpld_controlfrac_c384 FAIL baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmark_prod Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3954,7 +4828,7 @@ Test 089 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_bmark_prod Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4010,7 +4884,7 @@ Test 090 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmarkfrac_prod Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4066,7 +4940,7 @@ Test 091 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_bmarkfrac_prod Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4122,7 +4996,7 @@ Test 092 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmarkfrac_v16_prod Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4178,7 +5052,7 @@ Test 093 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_bmarkfrac_v16_prod Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4234,7 +5108,7 @@ Test 094 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmark_wave_prod Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4293,7 +5167,7 @@ Test 095 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmarkfrac_wave_prod Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4352,7 +5226,7 @@ Test 096 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmarkfrac_wave_v16_prod Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4411,7 +5285,7 @@ Test 097 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_control_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_control_wave_prod Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4467,7 +5341,7 @@ Test 098 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_debug_prod Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4520,7 +5394,7 @@ Test 099 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_debugfrac_prod Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4573,7 +5447,7 @@ Test 100 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_control_cfsr Checking test 101 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4582,7 +5456,7 @@ Test 101 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_restart_cfsr Checking test 102 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4591,7 +5465,7 @@ Test 102 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_control_gefs Checking test 103 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4600,7 +5474,7 @@ Test 103 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_bulk_cfsr Checking test 104 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4609,7 +5483,7 @@ Test 104 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_bulk_gefs Checking test 105 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4618,7 +5492,7 @@ Test 105 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_mx025_cfsr Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4630,7 +5504,7 @@ Test 106 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_mx025_gefs Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4642,7 +5516,7 @@ Test 107 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_122270/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_debug_cfsr Checking test 108 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4650,20 +5524,9 @@ Checking test 108 datm_debug_cfsr results .... Test 108 datm_debug_cfsr PASS FAILED TESTS: -Test fv3_ccpp_2threads 003 failed in run_test failed -Test fv3_ccpp_control 001 failed in run_test failed -Test fv3_ccpp_wrtGauss_netcdf_esmf 006 failed in run_test failed -Test fv3_ccpp_wrtGauss_netcdf_parallel 008 failed in run_test failed -Test fv3_ccpp_decomp 002 failed in run_test failed -Test fv3_ccpp_wrtGauss_netcdf 007 failed in run_test failed -Test fv3_ccpp_wrtGlatlon_netcdf 009 failed in run_test failed -Test fv3_ccpp_wrtGauss_nemsio 010 failed in run_test failed -Test fv3_ccpp_wrtGauss_nemsio_c192 011 failed in run_test failed -Test fv3_ccpp_stochy 012 failed in run_test failed -Test fv3_ccpp_ca 013 failed in run_test failed -Test fv3_ccpp_lndp 014 failed in run_test failed -Test fv3_ccpp_lheatstrg 016 failed in run_test failed +Test cpld_controlfrac_c384 087 failed in check_result failed +Test cpld_controlfrac_c384 087 failed in run_test failed REGRESSION TEST FAILED -Tue Feb 23 04:39:14 UTC 2021 -Elapsed time: 01h:19m:32s. Have a nice day! +Wed Feb 24 07:06:54 UTC 2021 +Elapsed time: 03h:33m:32s. Have a nice day! From 55026e936eac7ca7a3b8b44eb717ae9593776e39 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 24 Feb 2021 13:15:38 +0000 Subject: [PATCH 109/117] Jet Regression Test --- tests/RegressionTests_jet.intel.log | 136 ++++++++++++++-------------- 1 file changed, 68 insertions(+), 68 deletions(-) diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 178216a8c5..85607b9f5b 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Feb 17 22:55:09 GMT 2021 +Wed Feb 24 01:58:09 GMT 2021 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_2threads_prod Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_2threads PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_restart_prod Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -189,7 +189,7 @@ Test 003 fv3_ccpp_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_read_inc_prod Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_read_inc PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -305,7 +305,7 @@ Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_wrtGauss_netcdf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -353,7 +353,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -401,7 +401,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -449,7 +449,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -497,7 +497,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -545,7 +545,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_ca_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_ca_prod Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_ca PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lndp_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_lndp_prod Checking test 013 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_lndp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -865,7 +865,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1063,7 +1063,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,7 +1130,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1141,7 +1141,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1150,7 +1150,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1161,7 +1161,7 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1172,7 +1172,7 @@ Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,7 +1268,7 @@ Test 025 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1316,7 +1316,7 @@ Test 026 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1364,7 +1364,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1412,7 +1412,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1460,7 +1460,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,7 +1508,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,7 +1560,7 @@ Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,7 +1614,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1706,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v15p2_prod Checking test 036 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 036 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v16_prod Checking test 037 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1990,7 +1990,7 @@ Test 037 fv3_ccpp_gfs_v16 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v16_restart_prod Checking test 038 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2040,7 +2040,7 @@ Test 038 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v16_stochy_prod Checking test 039 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 039 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2176,7 +2176,7 @@ Test 040 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2244,7 +2244,7 @@ Test 041 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2306,7 +2306,7 @@ Test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfsv16_csawmg_prod Checking test 043 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2354,7 +2354,7 @@ Test 043 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfsv16_csawmgt_prod Checking test 044 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2402,7 +2402,7 @@ Test 044 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gocart_clm_prod Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,7 +2450,7 @@ Test 045 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v16_flake_prod Checking test 046 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2518,7 +2518,7 @@ Test 046 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2586,7 +2586,7 @@ Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2604,7 +2604,7 @@ Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2666,7 +2666,7 @@ Test 049 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2728,7 +2728,7 @@ Test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v15p2_debug_prod Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2796,7 +2796,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v16_debug_prod Checking test 052 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2864,7 +2864,7 @@ Test 052 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2932,7 +2932,7 @@ Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3000,7 +3000,7 @@ Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_regional_control_debug_prod Checking test 055 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3011,7 +3011,7 @@ Test 055 fv3_ccpp_regional_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_control_debug_prod Checking test 056 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3041,7 +3041,7 @@ Test 056 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_stretched_nest_debug_prod Checking test 057 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3061,7 +3061,7 @@ Test 057 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gsd_debug_prod Checking test 058 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3129,7 +3129,7 @@ Test 058 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gsd_diag3d_debug_prod Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3197,7 +3197,7 @@ Test 059 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_thompson_debug_prod Checking test 060 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3265,7 +3265,7 @@ Test 060 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_thompson_no_aero_debug_prod Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3333,7 +3333,7 @@ Test 061 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3401,7 +3401,7 @@ Test 062 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3469,7 +3469,7 @@ Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3487,7 +3487,7 @@ Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_85946/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3549,5 +3549,5 @@ Test 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 00:55:53 GMT 2021 -Elapsed time: 02h:00m:45s. Have a nice day! +Wed Feb 24 04:54:11 GMT 2021 +Elapsed time: 02h:56m:02s. Have a nice day! From aa8cb88eca8fd9bc817c74aa785cde12319e458f Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 24 Feb 2021 15:17:32 +0000 Subject: [PATCH 110/117] * Logs renamed and saved for a max one month. * Log location sent as comment, not log itself. * fixed extra code in sh export. * renamed runFunction to run_function. * removed extra debug for issue to be addressed later. --- tests/auto/rt_auto.py | 56 ++++++++++++++++++++++++++++++------------- tests/auto/rt_auto.sh | 2 -- 2 files changed, 39 insertions(+), 19 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index a8510b53d1..d8a0fef1b9 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -135,13 +135,38 @@ def add_pr_label(self): self.logger.info(f'Adding Label: {self.preq_dict["label"]}') self.preq_dict['preq'].add_to_labels(self.preq_dict['label']) - def send_log_as_comment(self): - with open('rt_auto.log', 'r') as f: - filedata = f.read() - self.preq_dict['preq'].create_issue_comment(filedata) + def send_log_name_as_comment(self): + logger = logging.getLogger('JOB/SEND_LOG_NAME_AS_COMMENT') + logger.info('Removing last months logs (if any)'') + last_month = datetime.date.today().replace(day=1) - datetime.timedelta(days=1) + rm_command = [[f'rm rt_auto_{last_month.strftime("%Y%m")}*.log', os.getcwd()]] + logger.info(f'Running "{rm_command}"') + try: + self.run_commands(rm_command) + except as e: + logger.warning(f'"{rm_command}" failed with error:{e}') + + new_log_name = f'rt_auto_{self.machine["name"]}_'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' + cp_command = [[f'cp rt_auto.log new_log_name', os.getcwd()]] + logger.info(f'Running "{cp_command}"') + try: + self.run_commands(cp_command) + except as e: + logger.warning('Renaming rt_auto failed') + else: + comment_text = f'Log Name:{new_log_name}\n'\ + f'Log Location:{os.getcwd()}\n'\ + 'Logs are kept for one month' + try: + self.preq_dict['preq'].create_issue_comment(comment_text) + except as e: + logger.warning('Creating comment with log location failed with:{e}') + else: + logger.info(f'{comment_text}') def run_commands(self, commands_with_cwd): - logger = logging.getLogger('RUN_COMMANDS') + logger = logging.getLogger('JOB/RUN_COMMANDS') for command, in_cwd in commands_with_cwd: logger.info(f'Running "{command}" in location "{in_cwd}"') try: @@ -163,7 +188,7 @@ def run_commands(self, commands_with_cwd): def remove_pr_dir(self): logger = logging.getLogger('JOB/REMOVE_PR_DIR') pr_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}' - rm_command = [f'rm -rf {pr_dir_str}', os.getcwd()] + rm_command = [[f'rm -rf {pr_dir_str}', self.pr_repo_loc]] logger.info(f'Running "{rm_command}"') self.run_commands(rm_command) @@ -190,9 +215,9 @@ def clone_pr_repo(self): self.pr_repo_loc = repo_dir_str+"/"+repo_name return self.pr_repo_loc - def runFunction(self): + def run_function(self): ''' Run the command associted with the label used to initiate this job ''' - logger = logging.getLogger('JOB/RUNFUNCTION') + logger = logging.getLogger('JOB/RUN_FUNCTION') try: logger.info(f'Running: "{self.preq_dict["action"]["command"]}" in "{self.pr_repo_loc}"') output = subprocess.Popen(self.preq_dict['action']['command'], cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) @@ -206,14 +231,11 @@ def runFunction(self): [logger.critical(f'stderr: {eitem}') for eitem in err if not None] assert(e) else: - [logger.critical(f'stdout: {item}') for item in out if not None] - [logger.critical(f'stderr: {eitem}') for eitem in err if not None] - logger.debug(output.returncode) if output.returncode != 0: self.add_pr_label() logger.critical(f'{self.preq_dict["action"]["command"]} Failed') - [logger.debug(f'stdout: {item}') for item in out if not None] - [logger.debug(f'stderr: {eitem}') for eitem in err if not None] + [logger.critical(f'stdout: {item}') for item in out if not None] + [logger.critical(f'stderr: {eitem}') for eitem in err if not None] else: try: logger.info(f'Attempting to run callback: {self.preq_dict["action"]["callback_fnc"]}') @@ -286,12 +308,12 @@ def main(): job.remove_pr_label() logger.info('Calling clone_pr_repo') job.clone_pr_repo() - logger.info('Calling runFunction') - job.runFunction() + logger.info('Calling run_function') + job.run_function() logger.info('Calling remove_pr_dir') job.remove_pr_dir() - logger.info('Calling send_log_as_comment') - job.send_log_as_comment() + logger.info('Calling send_log_name_as_comment') + job.send_log_name_as_comment() except Exception as e: job.add_pr_label() logger.critical(e) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index a0b810348a..d8316b1bf1 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -2,10 +2,8 @@ set -eux if [ -f "accesstoken.sh" ]; then source ./accesstoken.sh - export ghapitoken=$ghapitoken else echo "Please create accesstoken.sh (600) with the following content\n" - echo "/bin/bash\n" echo "export ghapitoken=" exit 1 fi From c0e52cc054d36abc82b59ff8ed4bd61e6df2d85b Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 24 Feb 2021 15:36:49 +0000 Subject: [PATCH 111/117] * typo fixes * exception fixes * skip-ci --- tests/auto/rt_auto.py | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index d8a0fef1b9..8ae2fa19f1 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -130,29 +130,24 @@ def remove_pr_label(self): self.logger.info(f'Removing Label: {self.preq_dict["label"]}') self.preq_dict['preq'].remove_from_labels(self.preq_dict['label']) - def add_pr_label(self): - ''' adds the pull request label that initiated the job run to PR''' - self.logger.info(f'Adding Label: {self.preq_dict["label"]}') - self.preq_dict['preq'].add_to_labels(self.preq_dict['label']) - def send_log_name_as_comment(self): logger = logging.getLogger('JOB/SEND_LOG_NAME_AS_COMMENT') - logger.info('Removing last months logs (if any)'') + logger.info('Removing last months logs (if any)') last_month = datetime.date.today().replace(day=1) - datetime.timedelta(days=1) rm_command = [[f'rm rt_auto_{last_month.strftime("%Y%m")}*.log', os.getcwd()]] logger.info(f'Running "{rm_command}"') try: self.run_commands(rm_command) - except as e: + except Exception as e: logger.warning(f'"{rm_command}" failed with error:{e}') new_log_name = f'rt_auto_{self.machine["name"]}_'\ f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' - cp_command = [[f'cp rt_auto.log new_log_name', os.getcwd()]] + cp_command = [[f'cp rt_auto.log {new_log_name}', os.getcwd()]] logger.info(f'Running "{cp_command}"') try: self.run_commands(cp_command) - except as e: + except Exception as e: logger.warning('Renaming rt_auto failed') else: comment_text = f'Log Name:{new_log_name}\n'\ @@ -160,7 +155,7 @@ def send_log_name_as_comment(self): 'Logs are kept for one month' try: self.preq_dict['preq'].create_issue_comment(comment_text) - except as e: + except Exception as e: logger.warning('Creating comment with log location failed with:{e}') else: logger.info(f'{comment_text}') @@ -175,7 +170,6 @@ def run_commands(self, commands_with_cwd): out = [] if not out else out.decode('utf8').split('\n') err = [] if not err else err.decode('utf8').split('\n') except Exception as e: - self.add_pr_label() logger.critical(e) [logger.critical(f'stdout: {item}') for item in out if not None] [logger.critical(f'stderr: {eitem}') for eitem in err if not None] @@ -225,14 +219,12 @@ def run_function(self): out = [] if not out else out.decode('utf8').split('\n') err = [] if not err else err.decode('utf8').split('\n') except Exception as e: - self.add_pr_label() logger.critical(e) [logger.critical(f'stdout: {item}') for item in out if not None] [logger.critical(f'stderr: {eitem}') for eitem in err if not None] assert(e) else: if output.returncode != 0: - self.add_pr_label() logger.critical(f'{self.preq_dict["action"]["command"]} Failed') [logger.critical(f'stdout: {item}') for item in out if not None] [logger.critical(f'stderr: {eitem}') for eitem in err if not None] @@ -241,7 +233,6 @@ def run_function(self): logger.info(f'Attempting to run callback: {self.preq_dict["action"]["callback_fnc"]}') getattr(self, self.preq_dict['action']['callback_fnc'])() except Exception as e: - self.add_pr_label() logger.critical(f'Callback function {self.preq_dict["action"]["callback_fnc"]} failed with "{e}"') goodexit = False assert(e) @@ -315,7 +306,6 @@ def main(): logger.info('Calling send_log_name_as_comment') job.send_log_name_as_comment() except Exception as e: - job.add_pr_label() logger.critical(e) assert(e) From 3dc381122593313d609991c29272a3f33ce59fee Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 24 Feb 2021 18:43:01 +0000 Subject: [PATCH 112/117] Auto: Added Updated RT Log file: tests/RegressionTests_hera.intel.log --- tests/RegressionTests_hera.intel.log | 383 +++++++++++++++------------ 1 file changed, 218 insertions(+), 165 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 65149376a4..720520b7b7 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Feb 24 03:33:23 UTC 2021 +Wed Feb 24 15:44:08 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1483,7 +1483,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,7 +1531,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,7 +1579,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,7 +1627,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1675,7 +1675,7 @@ Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1723,7 +1723,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1775,7 +1775,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1829,7 +1829,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1921,7 +1921,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,7 +1989,7 @@ Test 038 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2057,7 +2057,7 @@ Test 039 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,7 +2125,7 @@ Test 040 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,7 +2193,7 @@ Test 041 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,7 +2261,7 @@ Test 042 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2329,7 +2329,7 @@ Test 043 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2409,7 +2409,7 @@ Test 044 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2459,7 +2459,7 @@ Test 045 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2527,7 +2527,7 @@ Test 046 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2595,7 +2595,7 @@ Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,7 +2663,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2725,7 +2725,7 @@ Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfsv16_csawmg_prod Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2773,7 +2773,7 @@ Test 050 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfsv16_csawmgt_prod Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2821,7 +2821,7 @@ Test 051 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gocart_clm_prod Checking test 052 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2869,7 +2869,7 @@ Test 052 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v16_flake_prod Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2937,7 +2937,7 @@ Test 053 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3005,7 +3005,7 @@ Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3023,7 +3023,7 @@ Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3085,7 +3085,7 @@ Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3147,7 +3147,7 @@ Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v15p2_debug_prod Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3215,7 +3215,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3283,7 +3283,7 @@ Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3351,7 +3351,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3419,7 +3419,7 @@ Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_regional_control_debug_prod Checking test 062 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3430,7 +3430,7 @@ Test 062 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_control_debug_prod Checking test 063 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3460,7 +3460,7 @@ Test 063 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_stretched_nest_debug_prod Checking test 064 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3480,7 +3480,7 @@ Test 064 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gsd_debug_prod Checking test 065 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3548,7 +3548,7 @@ Test 065 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gsd_diag3d_debug_prod Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3616,7 +3616,7 @@ Test 066 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_thompson_debug_prod Checking test 067 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3684,7 +3684,7 @@ Test 067 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_thompson_no_aero_debug_prod Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3752,7 +3752,7 @@ Test 068 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3820,7 +3820,7 @@ Test 069 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3888,7 +3888,7 @@ Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3906,7 +3906,7 @@ Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3968,7 +3968,7 @@ Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_control_prod Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4021,7 +4021,7 @@ Test 073 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_restart_prod Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4074,7 +4074,7 @@ Test 074 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_controlfrac_prod Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4127,7 +4127,7 @@ Test 075 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_restartfrac_prod Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4180,7 +4180,7 @@ Test 076 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_2threads_prod Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4233,7 +4233,7 @@ Test 077 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_decomp_prod Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4286,7 +4286,7 @@ Test 078 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_satmedmf_prod Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4339,7 +4339,7 @@ Test 079 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_ca_prod Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4392,7 +4392,7 @@ Test 080 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_control_c192_prod Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4445,7 +4445,7 @@ Test 081 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_restart_c192_prod Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4498,7 +4498,7 @@ Test 082 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_controlfrac_c192_prod Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4551,7 +4551,7 @@ Test 083 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_restartfrac_c192_prod Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4604,7 +4604,7 @@ Test 084 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_control_c384_prod Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4660,7 +4660,7 @@ Test 085 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_restart_c384_prod Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4716,63 +4716,119 @@ Test 086 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_controlfrac_c384_prod Checking test 087 cpld_controlfrac_c384 results .... - Comparing phyf024.tile1.nc ............MISSING file - Comparing phyf024.tile2.nc ............MISSING file - Comparing phyf024.tile3.nc ............MISSING file - Comparing phyf024.tile4.nc ............MISSING file - Comparing phyf024.tile5.nc ............MISSING file - Comparing phyf024.tile6.nc ............MISSING file - Comparing dynf024.tile1.nc ............MISSING file - Comparing dynf024.tile2.nc ............MISSING file - Comparing dynf024.tile3.nc ............MISSING file - Comparing dynf024.tile4.nc ............MISSING file - Comparing dynf024.tile5.nc ............MISSING file - Comparing dynf024.tile6.nc ............MISSING file - Comparing RESTART/coupler.res ............MISSING file - Comparing RESTART/fv_core.res.nc ............MISSING file - Comparing RESTART/fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/phy_data.tile1.nc ............MISSING file - Comparing RESTART/phy_data.tile2.nc ............MISSING file - Comparing RESTART/phy_data.tile3.nc ............MISSING file - Comparing RESTART/phy_data.tile4.nc ............MISSING file - Comparing RESTART/phy_data.tile5.nc ............MISSING file - Comparing RESTART/phy_data.tile6.nc ............MISSING file - Comparing RESTART/sfc_data.tile1.nc ............MISSING file - Comparing RESTART/sfc_data.tile2.nc ............MISSING file - Comparing RESTART/sfc_data.tile3.nc ............MISSING file - Comparing RESTART/sfc_data.tile4.nc ............MISSING file - Comparing RESTART/sfc_data.tile5.nc ............MISSING file - Comparing RESTART/sfc_data.tile6.nc ............MISSING file - Comparing RESTART/MOM.res.nc ............MISSING file - Comparing RESTART/MOM.res_1.nc ............MISSING file - Comparing RESTART/MOM.res_2.nc ............MISSING file - Comparing RESTART/MOM.res_3.nc ............MISSING file - Comparing RESTART/iced.2016-10-04-00000.nc ............MISSING file - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc ............MISSING file -Test 087 cpld_controlfrac_c384 FAIL + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 087 cpld_controlfrac_c384 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_restartfrac_c384_prod +Checking test 088 cpld_restartfrac_c384 results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 088 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_bmark_prod Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4828,7 +4884,7 @@ Test 089 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_restart_bmark_prod Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4884,7 +4940,7 @@ Test 090 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_bmarkfrac_prod Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4940,7 +4996,7 @@ Test 091 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_restart_bmarkfrac_prod Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4996,7 +5052,7 @@ Test 092 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_bmarkfrac_v16_prod Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5052,7 +5108,7 @@ Test 093 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_restart_bmarkfrac_v16_prod Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5108,7 +5164,7 @@ Test 094 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_bmark_wave_prod Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5167,7 +5223,7 @@ Test 095 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_bmarkfrac_wave_prod Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5226,7 +5282,7 @@ Test 096 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_bmarkfrac_wave_v16_prod Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5285,7 +5341,7 @@ Test 097 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_control_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_control_wave_prod Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5341,7 +5397,7 @@ Test 098 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_debug_prod Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5394,7 +5450,7 @@ Test 099 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/cpld_debugfrac_prod Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5447,7 +5503,7 @@ Test 100 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/datm_control_cfsr Checking test 101 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5456,7 +5512,7 @@ Test 101 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/datm_restart_cfsr Checking test 102 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5465,7 +5521,7 @@ Test 102 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/datm_control_gefs Checking test 103 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5474,7 +5530,7 @@ Test 103 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/datm_bulk_cfsr Checking test 104 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5483,7 +5539,7 @@ Test 104 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/datm_bulk_gefs Checking test 105 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5492,7 +5548,7 @@ Test 105 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/datm_mx025_cfsr Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5504,7 +5560,7 @@ Test 106 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/datm_mx025_gefs Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5516,17 +5572,14 @@ Test 107 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_219164/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_38445/datm_debug_cfsr Checking test 108 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK Test 108 datm_debug_cfsr PASS -FAILED TESTS: -Test cpld_controlfrac_c384 087 failed in check_result failed -Test cpld_controlfrac_c384 087 failed in run_test failed -REGRESSION TEST FAILED -Wed Feb 24 07:06:54 UTC 2021 -Elapsed time: 03h:33m:32s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Wed Feb 24 18:43:00 UTC 2021 +Elapsed time: 02h:58m:52s. Have a nice day! From 24eb8b7bc7416f32953eef5d6f34fb0fa769428a Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 24 Feb 2021 20:31:37 +0000 Subject: [PATCH 113/117] hera.gnu log --- tests/RegressionTests_hera.gnu.log | 66 +++++++++++++++--------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 50d1df6ef8..3571978816 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 17 20:45:37 UTC 2021 +Wed Feb 24 19:54:10 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,7 +119,7 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -453,7 +453,7 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -903,7 +903,7 @@ Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1027,7 +1027,7 @@ Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1057,7 +1057,7 @@ Test 017 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,7 +1125,7 @@ Test 018 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1193,7 +1193,7 @@ Test 019 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1261,7 +1261,7 @@ Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,7 +1329,7 @@ Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1403,7 +1403,7 @@ Test 022 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1414,7 +1414,7 @@ Test 023 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 024 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,7 +1550,7 @@ Test 025 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1618,7 +1618,7 @@ Test 026 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1686,7 +1686,7 @@ Test 027 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1754,7 @@ Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1772,7 +1772,7 @@ Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_305868/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 17 21:14:47 UTC 2021 -Elapsed time: 00h:29m:11s. Have a nice day! +Wed Feb 24 20:25:27 UTC 2021 +Elapsed time: 00h:31m:17s. Have a nice day! From 017aec16f9b453802a47c13d451090f5a1a3e3b7 Mon Sep 17 00:00:00 2001 From: "Brian.Curtis@noaa.gov" Date: Thu, 25 Feb 2021 00:20:03 +0000 Subject: [PATCH 114/117] WCoss Dell P3 Logs --- tests/RegressionTests_wcoss_dell_p3.log | 224 ++++++++++++------------ 1 file changed, 112 insertions(+), 112 deletions(-) diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 4dafe6fe6b..3f35dbd35f 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Feb 18 21:24:50 UTC 2021 +Wed Feb 24 15:43:55 UTC 2021 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -429,10 +429,10 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1105,7 +1105,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_control_32bit_prod Checking test 020 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1173,7 +1173,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1229,7 +1229,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_stretched_nest_prod Checking test 022 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1296,7 +1296,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1307,7 +1307,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1316,7 +1316,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1327,7 +1327,7 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1338,7 +1338,7 @@ Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1386,7 +1386,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1434,7 +1434,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,7 +1530,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,7 +1578,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1626,7 +1626,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,7 +1674,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1726,7 +1726,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1780,7 +1780,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1872,7 +1872,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1940,7 +1940,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2008,7 +2008,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2076,7 +2076,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_thompson_no_aero_prod Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2144,7 +2144,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_rrfs_v1beta_prod Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2212,7 +2212,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v15p2_prod Checking test 042 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2280,7 +2280,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2360,7 +2360,7 @@ Test 043 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2410,7 +2410,7 @@ Test 044 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2478,7 +2478,7 @@ Test 045 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,7 +2546,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2614,7 +2614,7 @@ Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2676,7 +2676,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfsv16_csawmg_prod Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2724,7 +2724,7 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfsv16_csawmgt_prod Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2772,7 +2772,7 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gocart_clm_prod Checking test 051 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2820,7 +2820,7 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2888,7 +2888,7 @@ Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2956,7 +2956,7 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2974,7 +2974,7 @@ Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3036,7 +3036,7 @@ Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3098,7 +3098,7 @@ Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v15p2_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3166,7 +3166,7 @@ Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v16_debug_prod Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3234,7 +3234,7 @@ Test 058 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3302,7 +3302,7 @@ Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3370,7 +3370,7 @@ Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_regional_control_debug_prod Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3381,7 +3381,7 @@ Test 061 fv3_ccpp_regional_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_control_debug_prod Checking test 062 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3411,7 +3411,7 @@ Test 062 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_stretched_nest_debug_prod Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3431,7 +3431,7 @@ Test 063 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gsd_debug_prod Checking test 064 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3499,7 +3499,7 @@ Test 064 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gsd_diag3d_debug_prod Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3567,7 +3567,7 @@ Test 065 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_thompson_debug_prod Checking test 066 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3635,7 +3635,7 @@ Test 066 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_thompson_no_aero_debug_prod Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3703,7 +3703,7 @@ Test 067 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3771,7 +3771,7 @@ Test 068 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3839,7 +3839,7 @@ Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3857,7 +3857,7 @@ Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3919,7 +3919,7 @@ Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_control_prod Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3972,7 +3972,7 @@ Test 072 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_restart_prod Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4025,7 +4025,7 @@ Test 073 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_controlfrac_prod Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4078,7 +4078,7 @@ Test 074 cpld_controlfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_restartfrac_prod Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4131,7 +4131,7 @@ Test 075 cpld_restartfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_2threads_prod Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4184,7 +4184,7 @@ Test 076 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_decomp_prod Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4237,7 +4237,7 @@ Test 077 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_satmedmf_prod Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4290,7 +4290,7 @@ Test 078 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_ca_prod Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4343,7 +4343,7 @@ Test 079 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_control_c192_prod Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4396,7 +4396,7 @@ Test 080 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c192_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_restart_c192_prod Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4449,7 +4449,7 @@ Test 081 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_controlfrac_c192_prod Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4502,7 +4502,7 @@ Test 082 cpld_controlfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_restartfrac_c192_prod Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4555,7 +4555,7 @@ Test 083 cpld_restartfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_control_c384_prod Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4611,7 +4611,7 @@ Test 084 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c384_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_restart_c384_prod Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4667,7 +4667,7 @@ Test 085 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_controlfrac_c384_prod Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4723,7 +4723,7 @@ Test 086 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_restartfrac_c384_prod Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4779,7 +4779,7 @@ Test 087 cpld_restartfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_bmark_prod Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4835,7 +4835,7 @@ Test 088 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmark_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_restart_bmark_prod Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4891,7 +4891,7 @@ Test 089 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_bmarkfrac_prod Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4947,7 +4947,7 @@ Test 090 cpld_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_restart_bmarkfrac_prod Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5003,7 +5003,7 @@ Test 091 cpld_restart_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_bmarkfrac_v16_prod Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5059,7 +5059,7 @@ Test 092 cpld_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_restart_bmarkfrac_v16_prod Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5115,7 +5115,7 @@ Test 093 cpld_restart_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_bmark_wave_prod Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5174,7 +5174,7 @@ Test 094 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_bmarkfrac_wave_prod Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5233,7 +5233,7 @@ Test 095 cpld_bmarkfrac_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_v16_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_bmarkfrac_wave_v16_prod Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5292,7 +5292,7 @@ Test 096 cpld_bmarkfrac_wave_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_wave_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_control_wave_prod Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5348,7 +5348,7 @@ Test 097 cpld_control_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_debug_prod Checking test 098 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5401,7 +5401,7 @@ Test 098 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debugfrac_prod +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/cpld_debugfrac_prod Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5454,7 +5454,7 @@ Test 099 cpld_debugfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/datm_control_cfsr Checking test 100 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5463,7 +5463,7 @@ Test 100 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/datm_restart_cfsr Checking test 101 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5472,7 +5472,7 @@ Test 101 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/datm_control_gefs Checking test 102 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5481,7 +5481,7 @@ Test 102 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/datm_bulk_cfsr Checking test 103 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5490,7 +5490,7 @@ Test 103 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/datm_bulk_gefs Checking test 104 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5499,7 +5499,7 @@ Test 104 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/datm_mx025_cfsr Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5511,7 +5511,7 @@ Test 105 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/datm_mx025_gefs Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5523,7 +5523,7 @@ Test 106 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_36105/datm_debug_cfsr Checking test 107 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5532,5 +5532,5 @@ Test 107 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 19 05:44:09 UTC 2021 -Elapsed time: 08h:19m:22s. Have a nice day! +Thu Feb 25 00:17:24 UTC 2021 +Elapsed time: 08h:33m:33s. Have a nice day! From 14def7e0b7097c76b8e2b87257abf04689470c8b Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 25 Feb 2021 01:10:58 +0000 Subject: [PATCH 115/117] WCoss_Cray log --- tests/RegressionTests_wcoss_cray.log | 144 +++++++++++++-------------- 1 file changed, 72 insertions(+), 72 deletions(-) diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 102d04a38d..fff8aaa2c8 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Feb 18 16:08:52 UTC 2021 +Thu Feb 25 00:26:10 UTC 2021 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,7 +1229,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 035 fv3_ccpp_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 036 fv3_ccpp_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_thompson_no_aero_prod Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2046,7 +2046,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,7 +2114,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2182,7 +2182,7 @@ Test 040 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v16_prod Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2262,7 +2262,7 @@ Test 041 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v16_restart_prod Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 042 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v16_stochy_prod Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2380,7 +2380,7 @@ Test 043 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2448,7 +2448,7 @@ Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2516,7 +2516,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2578,7 +2578,7 @@ Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2626,7 +2626,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2674,7 +2674,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gocart_clm_prod Checking test 049 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2722,7 +2722,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v16_flake_prod Checking test 050 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2790,7 +2790,7 @@ Test 050 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2858,7 +2858,7 @@ Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2876,7 +2876,7 @@ Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2938,7 +2938,7 @@ Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3000,7 +3000,7 @@ Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v15p2_debug_prod Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3068,7 +3068,7 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3136,7 +3136,7 @@ Test 056 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3204,7 +3204,7 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3272,7 +3272,7 @@ Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_regional_control_debug_prod Checking test 059 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3283,7 +3283,7 @@ Test 059 fv3_ccpp_regional_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_control_debug_prod Checking test 060 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3313,7 +3313,7 @@ Test 060 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_stretched_nest_debug_prod Checking test 061 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3333,7 +3333,7 @@ Test 061 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gsd_debug_prod Checking test 062 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3401,7 +3401,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gsd_diag3d_debug_prod Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3469,7 +3469,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_thompson_debug_prod Checking test 064 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3537,7 +3537,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_thompson_no_aero_debug_prod Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3605,7 +3605,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3673,7 +3673,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,7 +3741,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3759,7 +3759,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_4814/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3821,5 +3821,5 @@ Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 16:51:34 UTC 2021 -Elapsed time: 00h:42m:42s. Have a nice day! +Thu Feb 25 01:08:19 UTC 2021 +Elapsed time: 00h:42m:09s. Have a nice day! From 0df4069fa17c0f6dcbfd58168a932fd9d0757a72 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 25 Feb 2021 18:28:34 +0000 Subject: [PATCH 116/117] Filename change in rm_command to match filename generated --- tests/auto/rt_auto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 8ae2fa19f1..a5d23ff33e 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -134,7 +134,7 @@ def send_log_name_as_comment(self): logger = logging.getLogger('JOB/SEND_LOG_NAME_AS_COMMENT') logger.info('Removing last months logs (if any)') last_month = datetime.date.today().replace(day=1) - datetime.timedelta(days=1) - rm_command = [[f'rm rt_auto_{last_month.strftime("%Y%m")}*.log', os.getcwd()]] + rm_command = [[f'rm rt_auto_*_{last_month.strftime("%Y%m")}*.log', os.getcwd()]] logger.info(f'Running "{rm_command}"') try: self.run_commands(rm_command) From 003499166afb419a89cbe5ff8d99263563673561 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 25 Feb 2021 19:42:32 +0000 Subject: [PATCH 117/117] Jet Python Path Updated --- tests/auto/rt_auto.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index d8316b1bf1..61fe523c6e 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -22,8 +22,8 @@ elif [[ $MACHINE_ID = orion.* ]]; then elif [[ $MACHINE_ID = jet.* ]]; then WORKDIR=/lfs4/HFIP/h-nems/Brian.Curtis/test export ACCNR="h-nems" - export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages + export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages elif [[ $MACHINE_ID = gaea.* ]]; then WORKDIR=/lustre/f2/pdata/ncep/Brian.Curtis/test export LOADEDMODULES=$LOADEDMODULES